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
1 changed files with 1 additions and 1 deletions

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;
}