2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-12-23 09:16:04 +01:00

platform: android: slightly more verbosity

This commit is contained in:
Alibek Omarov 2020-03-29 17:44:23 +03:00
parent 87340ceca8
commit 89ca0dec5e

View File

@ -337,7 +337,16 @@ DECLARE_JNI_INTERFACE( void, nativeKey, jint down, jint code )
else
{
if( code >= ( sizeof( s_android_scantokey ) / sizeof( s_android_scantokey[0] ) ) )
{
Con_DPrintf( "nativeKey: unknown Android key %d\n", code );
return;
}
if( !s_android_scantokey[code] )
{
Con_DPrintf( "nativeKey: unmapped Android key %d\n", code );
return;
}
event = Android_AllocEvent();
event->type = down?event_key_down:event_key_up;