From 5d2200bf45257c93d83767a54865f84c17c43a35 Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 26 May 2020 15:44:57 -0400 Subject: [PATCH] android: game_settings: Disable asynch GPU with DQ7. - This was causing some issues. --- src/android/app/src/main/jni/game_settings.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/android/app/src/main/jni/game_settings.cpp b/src/android/app/src/main/jni/game_settings.cpp index 093ba753e..e198d777f 100644 --- a/src/android/app/src/main/jni/game_settings.cpp +++ b/src/android/app/src/main/jni/game_settings.cpp @@ -16,6 +16,15 @@ void LoadOverrides(u64 program_id) { Settings::values.gpu_timing_mode_invalidate = Settings::GpuTimingMode::Synch; switch (program_id) { + // JAP / Dragon Quest VII: Fragments of the Forgotten Past + case 0x0004000000065E00: + // USA / Dragon Quest VII: Fragments of the Forgotten Past + case 0x000400000018EF00: + // EUR / Dragon Quest VII: Fragments of the Forgotten Past + case 0x000400000018F000: + Settings::values.use_asynchronous_gpu_emulation = false; + break; + //// JAP / The Legend of Zelda: A Link Between Worlds // case 0x00040000000EC200: //// USA / The Legend of Zelda: A Link Between Worlds