mirror of
https://github.com/doukutsu-rs/doukutsu-rs
synced 2025-03-24 19:09:22 +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 => {
|
TileLayer::Foreground => {
|
||||||
let attr = stage.map.attrib[tile as usize];
|
let attr = stage.map.attrib[tile as usize];
|
||||||
|
|
||||||
if attr < 0x40 || attr >= 0x80 || attr == 0x43 {
|
if attr < 0x40 || attr >= 0x80 {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue