Minor #define removal

This commit is contained in:
Henrik Rydgård 2015-10-06 19:17:29 +02:00
parent 7faf1cb3f3
commit 371e7ab880
2 changed files with 2 additions and 4 deletions

View file

@ -491,7 +491,6 @@ static ConfigSetting soundSettings[] = {
};
static bool DefaultShowTouchControls() {
#if defined(MOBILE_DEVICE)
int deviceType = System_GetPropertyInt(SYSPROP_DEVICE_TYPE);
if (deviceType == DEVICE_TYPE_MOBILE) {
std::string name = System_GetProperty(SYSPROP_NAME);
@ -507,9 +506,6 @@ static bool DefaultShowTouchControls() {
} else {
return false;
}
#else
return false;
#endif
}
static const float defaultControlScale = 1.15f;