mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-18 22:51:50 +00:00
- flag sprites for automapping regardless of the 'automapping' variable's value.
Duke should show its floor sprites, too.
This commit is contained in:
parent
2297c9351a
commit
99ecfe133d
2 changed files with 2 additions and 2 deletions
|
@ -3252,7 +3252,7 @@ void polymost_drawsprite(int32_t snum)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (automapping == 1 && (unsigned)spritenum < MAXSPRITES)
|
if ((unsigned)spritenum < MAXSPRITES)
|
||||||
show2dsprite.Set(spritenum);
|
show2dsprite.Set(spritenum);
|
||||||
|
|
||||||
_drawsprite_return:
|
_drawsprite_return:
|
||||||
|
|
|
@ -281,7 +281,7 @@ void HWDrawInfo::DispatchSprites()
|
||||||
if (spritenum < 0 || (unsigned)tilenum >= MAXTILES)
|
if (spritenum < 0 || (unsigned)tilenum >= MAXTILES)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (automapping == 1 && (unsigned)spritenum < MAXSPRITES)
|
if ((unsigned)spritenum < MAXSPRITES)
|
||||||
show2dsprite.Set(spritenum);
|
show2dsprite.Set(spritenum);
|
||||||
|
|
||||||
setgotpic(tilenum);
|
setgotpic(tilenum);
|
||||||
|
|
Loading…
Reference in a new issue