INNER CODE UNIT · C
IN_SupportedDevices
Qfusion/qfusion · source/android/android_input.c:437
unsigned int IN_SupportedDevices( void ) {
static unsigned int devices = IN_DEVICE_JOYSTICK | IN_DEVICE_SOFTKEYBOARD;
static bool touchscreenChecked;
if( !touchscreenChecked ) {
touchscreenChecked = true;
if( IN_Android_TouchscreenAvailable() ) {
devices |= IN_DEVICE_TOUCHSCREEN;
}
}
return devices;
}
/*
* IN_ShowSoftKeyboard
*/
void IN_ShowSoftKeyboard( bool show ) {