iOS: Return mobile for device type prop.

This makes touch controls show by default, for example.
This commit is contained in:
Unknown W. Brackets 2015-12-26 20:38:00 -08:00
parent da65116f75
commit 29eea477b9

View File

@ -63,6 +63,8 @@ int System_GetPropertyInt(SystemProperty prop) {
return 44100;
case SYSPROP_DISPLAY_REFRESH_RATE:
return 60000;
case SYSPROP_DEVICE_TYPE:
return DEVICE_TYPE_MOBILE;
default:
return -1;
}