From f5abb3030f20e94dc67d80450ef01bb31b3233ef Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:09:28 +0100 Subject: [PATCH 01/14] GameSettings: Disable Dual Core and Disable "Defer EFB Copies to RAM" for Bratz: Forever Diamondz --- Data/Sys/GameSettings/GVD.ini | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Data/Sys/GameSettings/GVD.ini diff --git a/Data/Sys/GameSettings/GVD.ini b/Data/Sys/GameSettings/GVD.ini new file mode 100644 index 0000000000..a55998db2d --- /dev/null +++ b/Data/Sys/GameSettings/GVD.ini @@ -0,0 +1,20 @@ +# GVDP78, GVDE78 - Bratz: Forever Diamondz + +[Core] +CPUThread = False + +[OnLoad] +# Add memory patches to be loaded once on boot here. + +[OnFrame] +# Add memory patches to be applied every frame here. + +[ActionReplay] +# Add action replay cheats here. + +[Video_Settings] +SafeTextureCacheColorSamples = 0 + +[Video_Hacks] +EFBToTextureEnable = False +DeferEFBCopies = False From 74f2fa2755a51594bee6687f75b3e95b927300bf Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:13:02 +0100 Subject: [PATCH 02/14] GameSettings: Disable Dual Core and Disable "Defer EFB Copies to RAM" for Bratz: Rock Angelz --- Data/Sys/GameSettings/GR6.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Data/Sys/GameSettings/GR6.ini b/Data/Sys/GameSettings/GR6.ini index 24f94b53c7..930e7e887b 100644 --- a/Data/Sys/GameSettings/GR6.ini +++ b/Data/Sys/GameSettings/GR6.ini @@ -1,7 +1,7 @@ # GR6P78, GR6E78, GR6D78, GR6F78 - Bratz: Rock Angelz [Core] -# Values set here will override the main Dolphin settings. +CPUThread = False [OnLoad] # Add memory patches to be loaded once on boot here. @@ -17,3 +17,4 @@ SafeTextureCacheColorSamples = 0 [Video_Hacks] EFBToTextureEnable = False +DeferEFBCopies = False From b083fc21814764b8c3b58d7bf251fae020136e9c Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:14:32 +0100 Subject: [PATCH 03/14] GameSettings: Disable Dual Core and Disable "Defer EFB Copies to RAM" for Bratz: The Movie --- Data/Sys/GameSettings/RB9.ini | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Data/Sys/GameSettings/RB9.ini b/Data/Sys/GameSettings/RB9.ini index d990672da0..5e55d3d77f 100644 --- a/Data/Sys/GameSettings/RB9.ini +++ b/Data/Sys/GameSettings/RB9.ini @@ -1,4 +1,21 @@ # RB9D78, RB9E78, RB9P78, RB9X78, RB9Y78 - Bratz: The Movie +[Core] +CPUThread = False + +[OnLoad] +# Add memory patches to be loaded once on boot here. + +[OnFrame] +# Add memory patches to be applied every frame here. + +[ActionReplay] +# Add action replay cheats here. + [Video_Settings] +SafeTextureCacheColorSamples = 0 SuggestedAspectRatio = 2 + +[Video_Hacks] +EFBToTextureEnable = False +DeferEFBCopies = False From 55fd06e0cecdb1bce22247fae767d2f74009c09f Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:17:03 +0100 Subject: [PATCH 04/14] GameSettings: Disable "EFB Copies to Texture Only" for Bratz: Girlz Really Rock --- Data/Sys/GameSettings/RRL.ini | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Data/Sys/GameSettings/RRL.ini b/Data/Sys/GameSettings/RRL.ini index 1e49bc883f..1f5b59ebb6 100644 --- a/Data/Sys/GameSettings/RRL.ini +++ b/Data/Sys/GameSettings/RRL.ini @@ -1,4 +1,20 @@ # RRLE78, RRLP78, RRLX78, RRLY78, RRLZ78 - Bratz: Girlz Really Rock +[Core] +# Values set here will override the main Dolphin settings. + +[OnLoad] +# Add memory patches to be loaded once on boot here. + +[OnFrame] +# Add memory patches to be applied every frame here. + +[ActionReplay] +# Add action replay cheats here. + [Video_Settings] +SafeTextureCacheColorSamples = 0 SuggestedAspectRatio = 2 + +[Video_Hacks] +EFBToTextureEnable = False From 02a8b5ba75e66da84f39511eb999cdc9d75df500 Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:21:36 +0100 Subject: [PATCH 05/14] GameSettings: Disable Dual Core and Disable "EFB Copies to Texture Only" for The Biggest Loser: Challenge --- Data/Sys/GameSettings/ST6.ini | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Data/Sys/GameSettings/ST6.ini diff --git a/Data/Sys/GameSettings/ST6.ini b/Data/Sys/GameSettings/ST6.ini new file mode 100644 index 0000000000..d626f934d5 --- /dev/null +++ b/Data/Sys/GameSettings/ST6.ini @@ -0,0 +1,7 @@ +# ST6E78, ST6P78 - The Biggest Loser: Challenge + +[Core] +CPUThread = False + +[Video_Hacks] +EFBToTextureEnable = False From 5a88989b941e8d2b97473f4364796f55101c7fcc Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:23:27 +0100 Subject: [PATCH 06/14] GameSettings: Set Texture Cache Accuracy to "Safe" for Academy Of Champions: Soccer --- Data/Sys/GameSettings/R5F.ini | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Data/Sys/GameSettings/R5F.ini diff --git a/Data/Sys/GameSettings/R5F.ini b/Data/Sys/GameSettings/R5F.ini new file mode 100644 index 0000000000..dc798c7cba --- /dev/null +++ b/Data/Sys/GameSettings/R5F.ini @@ -0,0 +1,4 @@ +# R5FP41, R5FE41 - Academy Of Champions: Soccer + +[Video_Settings] +SafeTextureCacheColorSamples = 0 From c5f95f0afea5cd306423f73bf40d555bd82bccb0 Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:24:34 +0100 Subject: [PATCH 07/14] GameSettings: Set Texture Cache Accuracy to "Safe" for Arthur and the Revenge of Maltazard --- Data/Sys/GameSettings/R8R.ini | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Data/Sys/GameSettings/R8R.ini diff --git a/Data/Sys/GameSettings/R8R.ini b/Data/Sys/GameSettings/R8R.ini new file mode 100644 index 0000000000..1a29efe551 --- /dev/null +++ b/Data/Sys/GameSettings/R8R.ini @@ -0,0 +1,4 @@ +# R8RP41 - Arthur and the Revenge of Maltazard + +[Video_Settings] +SafeTextureCacheColorSamples = 0 From fc7270df18bcf74f6d27b2e749f785a062917a86 Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:25:59 +0100 Subject: [PATCH 08/14] GameSettings: Set Texture Cache Accuracy to "Medium" for Alan Hansen's Sports Challenge --- Data/Sys/GameSettings/RCK.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/Data/Sys/GameSettings/RCK.ini b/Data/Sys/GameSettings/RCK.ini index 82dd4abd37..9a2c3f8fb7 100644 --- a/Data/Sys/GameSettings/RCK.ini +++ b/Data/Sys/GameSettings/RCK.ini @@ -1,4 +1,5 @@ # RCKPGN - Alan Hansen's Sports Challenge [Video_Settings] +SafeTextureCacheColorSamples = 512 SuggestedAspectRatio = 2 From 66da9daa7263bbe2282a47595522132629d07917 Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:26:54 +0100 Subject: [PATCH 09/14] GameSettings: Set Texture Cache Accuracy to "Medium" for Avatar: The Last Airbender - The Burning Earth --- Data/Sys/GameSettings/RVA.ini | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Data/Sys/GameSettings/RVA.ini diff --git a/Data/Sys/GameSettings/RVA.ini b/Data/Sys/GameSettings/RVA.ini new file mode 100644 index 0000000000..ad0d9959aa --- /dev/null +++ b/Data/Sys/GameSettings/RVA.ini @@ -0,0 +1,4 @@ +# RVAE78, RVAP78 - Avatar: The Last Airbender - The Burning Earth + +[Video_Settings] +SafeTextureCacheColorSamples = 512 From e80dfdc52b36ef39329a717b40359e4a598e9ac6 Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:28:45 +0100 Subject: [PATCH 10/14] GameSettings: Set Texture Cache Accuracy to "Safe" for Block Party --- Data/Sys/GameSettings/RRT.ini | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Data/Sys/GameSettings/RRT.ini diff --git a/Data/Sys/GameSettings/RRT.ini b/Data/Sys/GameSettings/RRT.ini new file mode 100644 index 0000000000..929f9b9345 --- /dev/null +++ b/Data/Sys/GameSettings/RRT.ini @@ -0,0 +1,4 @@ +# RRTE52, RRTP52 - Block Party + +[Video_Settings] +SafeTextureCacheColorSamples = 0 From f4783b180d3de9f34ce1ecc5cf23fe79d33f3f1e Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:29:50 +0100 Subject: [PATCH 11/14] GameSettings: Set Texture Cache Accuracy to "Safe" for Brothers In Arms: Earned In Blood --- Data/Sys/GameSettings/RB5.ini | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Data/Sys/GameSettings/RB5.ini diff --git a/Data/Sys/GameSettings/RB5.ini b/Data/Sys/GameSettings/RB5.ini new file mode 100644 index 0000000000..ec69cd6e75 --- /dev/null +++ b/Data/Sys/GameSettings/RB5.ini @@ -0,0 +1,4 @@ +# RB5E41, RB5P41 - Brothers In Arms: Earned In Blood + +[Video_Settings] +SafeTextureCacheColorSamples = 0 From a3d3300473d4f7ee86f5d44e8b11c2e001dd27a9 Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:30:53 +0100 Subject: [PATCH 12/14] GameSettings: Set Texture Cache Accuracy to "Safe" for Brothers In Arms: Road To Hill 30 --- Data/Sys/GameSettings/RI8.ini | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Data/Sys/GameSettings/RI8.ini diff --git a/Data/Sys/GameSettings/RI8.ini b/Data/Sys/GameSettings/RI8.ini new file mode 100644 index 0000000000..38d6a10ddd --- /dev/null +++ b/Data/Sys/GameSettings/RI8.ini @@ -0,0 +1,4 @@ +# RI8P41, RI8E41 - Brothers In Arms: Road To Hill 30 + +[Video_Settings] +SafeTextureCacheColorSamples = 0 From f0b2385deb8f506950d58b5cd93eec9e95e5c0f5 Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 14 Aug 2021 08:31:34 +0100 Subject: [PATCH 13/14] GameSettings: Set Texture Cache Accuracy to "Safe" for Broken Sword: Shadow of the Templars (Director's Cut) --- Data/Sys/GameSettings/RSJ.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/Data/Sys/GameSettings/RSJ.ini b/Data/Sys/GameSettings/RSJ.ini index 4cbe56e7b0..09593c09ea 100644 --- a/Data/Sys/GameSettings/RSJ.ini +++ b/Data/Sys/GameSettings/RSJ.ini @@ -1,4 +1,5 @@ # RSJE41, RSJP41 - Broken Sword: Shadow of the Templars (Director's Cut) [Video_Settings] +SafeTextureCacheColorSamples = 0 SuggestedAspectRatio = 2 From c4bc46c252eda66ca0ac651cc6e7b45362205e1d Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sat, 28 Aug 2021 15:37:15 +0100 Subject: [PATCH 14/14] GameSettings: Enable SyncGPU and Add Commented Out Accuracy Option for Another Code: R - A Journey into Lost Memories --- Data/Sys/GameSettings/RNO.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Data/Sys/GameSettings/RNO.ini b/Data/Sys/GameSettings/RNO.ini index 12513090b7..e0f343b784 100644 --- a/Data/Sys/GameSettings/RNO.ini +++ b/Data/Sys/GameSettings/RNO.ini @@ -1,7 +1,8 @@ # RNOJ01, RNOP01 - Another Code R Kioku no Tobira [Core] -# Values set here will override the main Dolphin settings. +# Prevents save game corruption. +SyncGPU = True [OnLoad] # Add memory patches to be loaded once on boot here. @@ -17,3 +18,5 @@ [Video_Hacks] EFBToTextureEnable = False ImmediateXFBEnable = False +# Multiple choice options displays some graphic corruption +# DeferEFBCopies = False