2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 10:37:41 -04:00

Fix a warning while I'm at it.

This commit is contained in:
Christian Walther
2012-01-25 20:40:42 +01:00
parent 12d114b63a
commit cec6d75f94

View File

@ -296,7 +296,7 @@ void plInputManager::HandleWin32ControlEvent(UINT message, WPARAM Wparam, LPARAM
if (Wparam == KEY_BACKSPACE || Wparam == KEY_ESCAPE)
break;
BYTE scan = Lparam >> 16;
BYTE scan = (BYTE)(Lparam >> 16);
UINT vkey = MapVirtualKey(scan, MAPVK_VSC_TO_VK);
bExtended = Lparam >> 24 & 1;