mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 06:41:59 +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;
|
||||
}
|
||||
|
||||
if (automapping == 1 && (unsigned)spritenum < MAXSPRITES)
|
||||
if ((unsigned)spritenum < MAXSPRITES)
|
||||
show2dsprite.Set(spritenum);
|
||||
|
||||
_drawsprite_return:
|
||||
|
|
|
@ -281,7 +281,7 @@ void HWDrawInfo::DispatchSprites()
|
|||
if (spritenum < 0 || (unsigned)tilenum >= MAXTILES)
|
||||
continue;
|
||||
|
||||
if (automapping == 1 && (unsigned)spritenum < MAXSPRITES)
|
||||
if ((unsigned)spritenum < MAXSPRITES)
|
||||
show2dsprite.Set(spritenum);
|
||||
|
||||
setgotpic(tilenum);
|
||||
|
|
Loading…
Reference in a new issue