1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2025-03-23 02:19:43 +00:00

Fixed snack tile rendering (Fixes #147)

This commit is contained in:
dawnDus 2022-07-22 17:32:16 -04:00
parent f00f35ca2c
commit cdd3a37754
No known key found for this signature in database
GPG key ID: 972AABDE81848F21

View file

@ -133,7 +133,7 @@ impl Tilemap {
TileLayer::Foreground => {
let attr = stage.map.attrib[tile as usize];
if attr < 0x40 || attr >= 0x80 || attr == 0x43 {
if attr < 0x40 || attr >= 0x80 {
continue;
}