mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- broken palette checks fixed - the new input routine mostly works.
This commit is contained in:
parent
ed81022d71
commit
a966e34caa
3 changed files with 4 additions and 4 deletions
|
@ -2711,7 +2711,7 @@ void processinput_d(int snum)
|
|||
return;
|
||||
}
|
||||
|
||||
if (p->pals.f >= 0) // JBF 20040101: was > 0
|
||||
if (p->pals.f > 0) // JBF 20040101: was > 0
|
||||
p->pals.f--;
|
||||
|
||||
// todo: Take this out of here. HUD text should be a new mode of the notification display.
|
||||
|
|
|
@ -3652,7 +3652,7 @@ void processinput_r(int snum)
|
|||
return;
|
||||
}
|
||||
|
||||
if (p->pals.f >= 0) // JBF 20040101: was > 0
|
||||
if (p->pals.f > 0)
|
||||
p->pals.f--;
|
||||
|
||||
// todo: Take this out of here. HUD text should be a new mode of the notification display.
|
||||
|
|
|
@ -4363,8 +4363,8 @@ int G_DoMoveThings(void)
|
|||
|
||||
if (ud.pause_on == 0)
|
||||
{
|
||||
P_ProcessInput(i);
|
||||
//fi.processinput(i);
|
||||
//P_ProcessInput(i);
|
||||
fi.processinput(i);
|
||||
fi.checksectors(i);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue