mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
- fixed screen resize actions to work outside the automap.
This commit is contained in:
parent
d645674c1c
commit
f888df9f5b
1 changed files with 2 additions and 2 deletions
|
@ -862,13 +862,13 @@ void CheckKeys()
|
|||
if (buttonMap.ButtonDown(gamefunc_Enlarge_Screen))
|
||||
{
|
||||
buttonMap.ClearButton(gamefunc_Enlarge_Screen);
|
||||
if (nMapMode) G_ChangeHudLayout(1);
|
||||
if (!nMapMode) G_ChangeHudLayout(1);
|
||||
}
|
||||
|
||||
if (buttonMap.ButtonDown(gamefunc_Shrink_Screen))
|
||||
{
|
||||
buttonMap.ClearButton(gamefunc_Shrink_Screen);
|
||||
if (nMapMode) G_ChangeHudLayout(-1);
|
||||
if (!nMapMode) G_ChangeHudLayout(-1);
|
||||
}
|
||||
|
||||
// go to 3rd person view?
|
||||
|
|
Loading…
Reference in a new issue