mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-22 20:59:19 +02:00
fix linux crash (maybe not correct, but does not crash)
This commit is contained in:
@@ -53,6 +53,9 @@ int vk_to_glfw_key( int const Keycode ) {
|
|||||||
|
|
||||||
#ifdef _WINDOWS
|
#ifdef _WINDOWS
|
||||||
auto const code = VkKeyScan( Keycode );
|
auto const code = VkKeyScan( Keycode );
|
||||||
|
#else
|
||||||
|
auto const code = (short int)Keycode;
|
||||||
|
#endif
|
||||||
char key = code & 0xff;
|
char key = code & 0xff;
|
||||||
char shiftstate = ( code & 0xff00 ) >> 8;
|
char shiftstate = ( code & 0xff00 ) >> 8;
|
||||||
|
|
||||||
@@ -63,7 +66,6 @@ int vk_to_glfw_key( int const Keycode ) {
|
|||||||
key = GLFW_KEY_0 + key - '0';
|
key = GLFW_KEY_0 + key - '0';
|
||||||
}
|
}
|
||||||
return key + ( shiftstate << 8 );
|
return key + ( shiftstate << 8 );
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TEventLauncher::Load(cParser *parser)
|
bool TEventLauncher::Load(cParser *parser)
|
||||||
|
|||||||
Reference in New Issue
Block a user