mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 23:55:40 +00:00
HostInterface: Fix compile error on Android 32-bit
This commit is contained in:
parent
eaad87ab4f
commit
0491c893d9
|
@ -697,7 +697,7 @@ void HostInterface::FixIncompatibleSettings(bool display_osd_messages)
|
||||||
#if defined(__ANDROID__) && defined(__arm__) && !defined(__aarch64__) && !defined(_M_ARM64)
|
#if defined(__ANDROID__) && defined(__arm__) && !defined(__aarch64__) && !defined(_M_ARM64)
|
||||||
if (g_settings.rewind_enable)
|
if (g_settings.rewind_enable)
|
||||||
{
|
{
|
||||||
AddOSDMessage(TranslateString("OSDMessage", "Rewind is not supported on 32-bit ARM for Android."));
|
AddOSDMessage(TranslateStdString("OSDMessage", "Rewind is not supported on 32-bit ARM for Android."), 30.0f);
|
||||||
g_settings.rewind_enable = false;
|
g_settings.rewind_enable = false;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue