mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- this was not correct.
This commit is contained in:
parent
7e73073103
commit
ff91493e39
1 changed files with 2 additions and 2 deletions
|
@ -753,7 +753,7 @@ int menu_DrawTheMap(int nLevel, int nLevelNew, int nLevelBest)
|
|||
|
||||
if (curYPos == destYPos)
|
||||
{
|
||||
if (inputState.GetKeyStatus[sc_UpArrow])
|
||||
if (inputState.GetKeyStatus(sc_UpArrow))
|
||||
{
|
||||
inputState.ClearKeyStatus(sc_UpArrow);
|
||||
|
||||
|
@ -775,7 +775,7 @@ int menu_DrawTheMap(int nLevel, int nLevelNew, int nLevelBest)
|
|||
}
|
||||
}
|
||||
|
||||
if (inputState.GetKeyStatus[sc_DownArrow])
|
||||
if (inputState.GetKeyStatus(sc_DownArrow))
|
||||
{
|
||||
inputState.ClearKeyStatus(sc_DownArrow);
|
||||
|
||||
|
|
Loading…
Reference in a new issue