mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 07:35:41 +00:00
Android: Add missing call to ApplyGameSettings
This commit is contained in:
parent
90d7550104
commit
cf75282078
|
@ -509,6 +509,7 @@ void AndroidHostInterface::OnSystemDestroyed()
|
|||
void AndroidHostInterface::OnRunningGameChanged()
|
||||
{
|
||||
CommonHostInterface::OnRunningGameChanged();
|
||||
ApplySettings(true);
|
||||
|
||||
if (m_emulation_activity_object)
|
||||
{
|
||||
|
@ -638,6 +639,7 @@ void AndroidHostInterface::ApplySettings(bool display_osd_messages)
|
|||
{
|
||||
Settings old_settings = std::move(g_settings);
|
||||
LoadAndConvertSettings();
|
||||
CommonHostInterface::ApplyGameSettings(display_osd_messages);
|
||||
CommonHostInterface::FixIncompatibleSettings(display_osd_messages);
|
||||
|
||||
// Defer renderer changes, the app really doesn't like it.
|
||||
|
|
|
@ -58,6 +58,12 @@
|
|||
app:defaultValue="false"
|
||||
app:summary="Loads patch codes from cheats/<game name>.cht in PCSXR format. Codes can be toggled while ingame."
|
||||
app:iconSpaceReserved="false" />
|
||||
<SwitchPreferenceCompat
|
||||
app:key="Main/ApplyGameSettings"
|
||||
app:title="Apply Compatibility Settings"
|
||||
app:defaultValue="true"
|
||||
app:summary="Automatically disable enhancements when they are not supported by games."
|
||||
app:iconSpaceReserved="false" />
|
||||
<SwitchPreferenceCompat
|
||||
app:key="Display/VSync"
|
||||
app:title="Video Sync"
|
||||
|
|
Loading…
Reference in a new issue