mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- Duke: Fix rotscrnang locked when reviving player after death via DNKROZ
cheat.
* Fixes #138.
This commit is contained in:
parent
9440bc0c6d
commit
63cb7dd2bd
1 changed files with 1 additions and 1 deletions
|
@ -918,7 +918,7 @@ void GameInterface::GetInput(InputPacket* packet, ControlInfo* const hidInput)
|
|||
|
||||
if (!cl_syncinput)
|
||||
{
|
||||
if (p->dead_flag == 0)
|
||||
if (sprite[p->i].extra > 0)
|
||||
{
|
||||
// Do these in the same order as the old code.
|
||||
calcviewpitch(p, scaleAdjust);
|
||||
|
|
Loading…
Reference in a new issue