engine: platform: android: remove dead code

This commit is contained in:
Alibek Omarov 2023-11-03 14:47:54 +03:00
parent cfc7b35927
commit 71b06801ef
2 changed files with 0 additions and 11 deletions

View File

@ -144,14 +144,4 @@ void Platform_ShellExecute( const char *path, const char *parms )
#endif
}
/*
========================
Android_GetKeyboardHeight
========================
*/
int Android_GetKeyboardHeight( void )
{
return (*jni.env)->CallIntMethod( jni.env, jni.activity, jni.getKeyboardHeight );
}
#endif // XASH_DEDICATED

View File

@ -63,7 +63,6 @@ const char *Android_LoadID( void );
void Android_SaveID( const char *id );
void Android_Init( void );
void *Android_GetNativeObject( const char *name );
int Android_GetKeyboardHeight( void );
#endif
#if XASH_WIN32