mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-11 16:05:34 +00:00
Avoid numeric overflow when printing debug message.
This commit is contained in:
parent
cd074040e3
commit
40c2576e06
|
@ -411,7 +411,7 @@ namespace OpenTK.Platform.Windows
|
|||
default:
|
||||
if (!WMInput.KeyMap.ContainsKey((VirtualKeys)wParam))
|
||||
{
|
||||
Debug.Print("Virtual key {0} ({1}) not mapped.", (VirtualKeys)wParam, (int)lParam);
|
||||
Debug.Print("Virtual key {0} ({1}) not mapped.", (VirtualKeys)wParam, (long)lParam);
|
||||
break;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue