mirror of
https://github.com/doukutsu-rs/doukutsu-rs
synced 2025-03-23 18:39:20 +00:00
Fixed snack tile rendering (Fixes #147)
This commit is contained in:
parent
f00f35ca2c
commit
cdd3a37754
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue