From 576bae3ac8d681f4a19c1b2fe05cced3aeaa2c88 Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sun, 29 Sep 2024 00:34:23 +0100 Subject: [PATCH 1/6] GameINI: Fix Cheats for Conduit 2 These codes are actually Gecko codes so setting that correctly. There were errors which pop up when running this game as the comments for AR codes need to be set with hash(#) instead of asterisk(*). I replaced those anyways. Removed the url in the comment since it's inaccessible and not on wayback machine either. Also corrected the GameID, the wrong one is listed. --- Data/Sys/GameSettings/SC2E8P.ini | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Data/Sys/GameSettings/SC2E8P.ini b/Data/Sys/GameSettings/SC2E8P.ini index 05ed2ede87..1187725e91 100644 --- a/Data/Sys/GameSettings/SC2E8P.ini +++ b/Data/Sys/GameSettings/SC2E8P.ini @@ -1,4 +1,4 @@ -# SC2P8P - Conduit 2 +# SC2E8P - Conduit 2 [OnLoad] # Add memory patches to be loaded once on boot here. @@ -6,8 +6,8 @@ [OnFrame] # Add memory patches to be applied every frame here. -[ActionReplay] -# Add action replay cheats here. +[Gecko] +# Add gecko cheats here. $Undead Invincibility Mode [Bully@Wiiplaza] F6000001 80008100 8001002C 90180000 @@ -19,9 +19,8 @@ D200000C 00000006 90040000 80040000 60000000 00000000 E0000000 80008000 -**Offline Only* -**You are completely untouchable* -*Picture -> http://imageshack.us/photo/my-images/684/sc2p8p008.png/ +# Offline Only +# You are completely untouchable $Inf. Ammo [Bully@Wiiplaza] F6000001 80008100 80640000 80050000 @@ -30,7 +29,7 @@ D2000008 00000003 38600000 7C030050 60000000 00000000 E0000000 80008000 -**Offline Only* +# Offline Only $No Flashwhite [Bully@Wiiplaza] F6000001 80008100 EC210032 93C10008 From d86146af72a61ee783c1be311c182ce5267e7b6a Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sun, 29 Sep 2024 00:34:36 +0100 Subject: [PATCH 2/6] GameINI: Remove Obsolete Settings in Super Metroid Demo (Brawl VC) Both UseXFB and UseRealXFB are obsolete since Hybrid XFB. --- Data/Sys/GameSettings/HBI.ini | 2 -- 1 file changed, 2 deletions(-) diff --git a/Data/Sys/GameSettings/HBI.ini b/Data/Sys/GameSettings/HBI.ini index 28db60cffe..799e80bd4b 100644 --- a/Data/Sys/GameSettings/HBI.ini +++ b/Data/Sys/GameSettings/HBI.ini @@ -5,5 +5,3 @@ [Video_Settings] SafeTextureCacheColorSamples = 0 -UseXFB = True -UseRealXFB = False From 5f49aa3afb2188a83beab2c53c24dc00e90d38c8 Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sun, 29 Sep 2024 00:34:51 +0100 Subject: [PATCH 3/6] GameINI: Remove Obsolete Setting in FaceBreaker K.O. Party Hack is not a valid setting. Also updated the GameID. --- Data/Sys/GameSettings/RFQ.ini | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Data/Sys/GameSettings/RFQ.ini b/Data/Sys/GameSettings/RFQ.ini index 4e8d033dd4..4e060490f5 100644 --- a/Data/Sys/GameSettings/RFQ.ini +++ b/Data/Sys/GameSettings/RFQ.ini @@ -1,4 +1,4 @@ -# RFQP69 - FaceBreaker K.O. Party +# RFQE69, RFQP69, RFQJ13, RFQK69 - FaceBreaker K.O. Party [Core] # Values set here will override the main Dolphin settings. @@ -12,9 +12,5 @@ [ActionReplay] # Add action replay cheats here. -[Video] -Hack = 3 - [Video_Settings] SafeTextureCacheColorSamples = 512 - From a2fec747c61d6c706d1a9b5c508f8d6760730c93 Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sun, 29 Sep 2024 00:35:09 +0100 Subject: [PATCH 4/6] GameINI: Rename INI for Naruto Collection (Demo) The wrong filename was used so the settings weren't being applied. (All it does is reset the Texture Cache Accuracy to the default setting.) --- Data/Sys/GameSettings/{PNJ.ini => PNR.ini} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Data/Sys/GameSettings/{PNJ.ini => PNR.ini} (91%) diff --git a/Data/Sys/GameSettings/PNJ.ini b/Data/Sys/GameSettings/PNR.ini similarity index 91% rename from Data/Sys/GameSettings/PNJ.ini rename to Data/Sys/GameSettings/PNR.ini index a1154352dd..436f0c5082 100644 --- a/Data/Sys/GameSettings/PNJ.ini +++ b/Data/Sys/GameSettings/PNR.ini @@ -14,4 +14,4 @@ [Video_Settings] # override value that was set in P.ini back to defaults -SafeTextureCacheColorSamples = \ No newline at end of file +SafeTextureCacheColorSamples = From 1d8fef86494f6a4e1b49b97e0fb1d0817fc5d7af Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sun, 29 Sep 2024 00:35:24 +0100 Subject: [PATCH 5/6] GameINI: Disable AA in Sonic Heroes The use of any anti-aliasing will cause graphical corruption, which occurs on the ground. MaxAnisotropy is supposed to be for [Video_Enhancements], but also it doesn't cause any of the issues in game so it is being removed rather than set under the correct heading. Added a comment on why these values are set. --- Data/Sys/GameSettings/G9S.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Data/Sys/GameSettings/G9S.ini b/Data/Sys/GameSettings/G9S.ini index 3837d1d70a..b8fb4e1599 100644 --- a/Data/Sys/GameSettings/G9S.ini +++ b/Data/Sys/GameSettings/G9S.ini @@ -13,8 +13,10 @@ # Add action replay cheats here. [Video_Hacks] +# Works around graphical corruption on ground VertexRounding = True [Video_Settings] SafeTextureCacheColorSamples = 0 -MaxAnisotropy = 0 +# Works around graphical corruption on ground +MSAA = 0 From eb07c832b9a1d1a19625762a115ffc6d6313d60b Mon Sep 17 00:00:00 2001 From: Patrick Ferry <8967997+PatrickFerry@users.noreply.github.com> Date: Sun, 29 Sep 2024 00:35:34 +0100 Subject: [PATCH 6/6] GameINI: Set Texture Cache Accuracy to "Safe" for UFC Personal Trainer: The Ultimate Fitness System SafeTextureCacheColorSamples is supposed to be for [Video_Settings], but also the medium setting isn't enough to display the missing text. --- Data/Sys/GameSettings/SU4.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Data/Sys/GameSettings/SU4.ini b/Data/Sys/GameSettings/SU4.ini index 8cc6e09860..39d0ca4ef6 100644 --- a/Data/Sys/GameSettings/SU4.ini +++ b/Data/Sys/GameSettings/SU4.ini @@ -1,4 +1,5 @@ # SU4P78, SU4E78 - UFC Personal Trainer: The Ultimate Fitness System -[Video_Hacks] -SafeTextureCacheColorSamples = 512 +[Video_Settings] +# Displays missing text +SafeTextureCacheColorSamples = 0