mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- Fixed: PrtScn/SysRq key did not work on Linux.
SVN r999 (trunk)
This commit is contained in:
parent
51adf36efc
commit
0d400522e4
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
May 29, 2008
|
||||||
|
- Fixed: PrtScn/SysRq key did not work on Linux.
|
||||||
|
|
||||||
May 28, 2008
|
May 28, 2008
|
||||||
- Added an alternate module replay engine that uses foo_dumb's replayer, a
|
- Added an alternate module replay engine that uses foo_dumb's replayer, a
|
||||||
heavily customized version of DUMB (Dynamic Universal Music Bibliotheque).
|
heavily customized version of DUMB (Dynamic Universal Music Bibliotheque).
|
||||||
|
|
|
@ -192,6 +192,8 @@ static void InitKeySymMap ()
|
||||||
KeySymToDIK[SDLK_RSHIFT] = DIK_LSHIFT;
|
KeySymToDIK[SDLK_RSHIFT] = DIK_LSHIFT;
|
||||||
KeySymToDIK[SDLK_RCTRL] = DIK_LCONTROL;
|
KeySymToDIK[SDLK_RCTRL] = DIK_LCONTROL;
|
||||||
KeySymToDIK[SDLK_RALT] = DIK_LMENU;
|
KeySymToDIK[SDLK_RALT] = DIK_LMENU;
|
||||||
|
// Depending on your Linux flavor, you may get SDLK_PRINT or SDLK_SYSREQ
|
||||||
|
KeySymToDIK[SDLK_PRINT] = DIK_SYSRQ;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void I_CheckGUICapture ()
|
static void I_CheckGUICapture ()
|
||||||
|
|
Loading…
Reference in a new issue