- Fixed: PrtScn/SysRq key did not work on Linux.

SVN r999 (trunk)
This commit is contained in:
Randy Heit 2008-05-30 01:50:41 +00:00
parent 51adf36efc
commit 0d400522e4
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,6 @@
May 29, 2008
- Fixed: PrtScn/SysRq key did not work on Linux.
May 28, 2008
- Added an alternate module replay engine that uses foo_dumb's replayer, a
heavily customized version of DUMB (Dynamic Universal Music Bibliotheque).

View File

@ -192,6 +192,8 @@ static void InitKeySymMap ()
KeySymToDIK[SDLK_RSHIFT] = DIK_LSHIFT;
KeySymToDIK[SDLK_RCTRL] = DIK_LCONTROL;
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 ()