mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-22 11:21:09 +00:00
- Fixed taking screenshots in menus with Space when Sys_Rq is set as screenshot key.
Thanks randi!
This commit is contained in:
parent
015eb3404a
commit
9ea43c4b14
2 changed files with 4 additions and 6 deletions
|
@ -107,10 +107,9 @@ enum ESpecialGUIKeys
|
|||
GK_DEL = 26,
|
||||
GK_ESCAPE = 27, // ASCII
|
||||
GK_FREE1 = 28,
|
||||
GK_FREE2 = 29,
|
||||
GK_SYSRQ = 29, // PrtSc
|
||||
GK_BACK = 30, // browser back key
|
||||
GK_CESCAPE = 31, // color escape
|
||||
GK_SYSRQ = 32 // PrtSc
|
||||
GK_CESCAPE = 31 // color escape
|
||||
};
|
||||
|
||||
#endif //__D_GUI_H__
|
||||
|
|
|
@ -113,10 +113,9 @@ struct UiEvent native ui version("2.4")
|
|||
Key_Del = 26,
|
||||
Key_Escape = 27, // ASCII
|
||||
Key_Free1 = 28,
|
||||
Key_Free2 = 29,
|
||||
Key_SysRq = 29, // PrtSc
|
||||
Key_Back = 30, // browser back key
|
||||
Key_CEscape = 31, // color escape
|
||||
Key_SysRq = 32 // PrtSc
|
||||
Key_CEscape = 31 // color escape
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue