mirror of
https://github.com/libretro/RetroArch
synced 2025-03-22 07:21:15 +00:00
(Android) Fix build
This commit is contained in:
parent
fbb0b57cae
commit
103a77832f
@ -587,7 +587,6 @@ static void frontend_android_get_environment_settings(int *argc, char *argv[],
|
|||||||
__system_property_get("ro.product.id", device_id);
|
__system_property_get("ro.product.id", device_id);
|
||||||
|
|
||||||
g_defaults.settings.video_threaded_enable = true;
|
g_defaults.settings.video_threaded_enable = true;
|
||||||
g_defaults.settings.input_overlay_enable = true; // Enable input overlay by default
|
|
||||||
|
|
||||||
// Set automatic default values per device
|
// Set automatic default values per device
|
||||||
if (device_is_xperia_play(device_model))
|
if (device_is_xperia_play(device_model))
|
||||||
@ -603,9 +602,12 @@ static void frontend_android_get_environment_settings(int *argc, char *argv[],
|
|||||||
else if (!strcmp(device_model, "JSS15J"))
|
else if (!strcmp(device_model, "JSS15J"))
|
||||||
g_defaults.settings.video_refresh_rate = 59.65;
|
g_defaults.settings.video_refresh_rate = 59.65;
|
||||||
|
|
||||||
|
//FIXME - needs to be refactored
|
||||||
|
#if 0
|
||||||
// Explicitly disable input overlay by default for gamepad-like/console devices
|
// Explicitly disable input overlay by default for gamepad-like/console devices
|
||||||
if (device_is_game_console(device_model))
|
if (device_is_game_console(device_model))
|
||||||
g_defaults.settings.input_overlay_enable = false;
|
g_defaults.settings.input_overlay_enable = false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user