From 3e4f682b76c2e3605f1fdb3dcca30209e63aa4cd Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 24 Dec 2016 13:04:29 +0100 Subject: [PATCH] Game INI updates - F.ini: PR #4189 removes the need for 1x IR according to JMC - GWO.ini: Just force integral resolution, not auto resolution - GALP01.ini: I have no idea why EFBScale would be forced here - GINX69.ini: I think JMC said it's fixed, but I can't find his post... - SNS.ini: https://bugs.dolphin-emu.org/issues/9891 - P INIs: https://bugs.dolphin-emu.org/issues/9938 --- Data/Sys/GameSettings/F.ini | 1 - Data/Sys/GameSettings/GALP01.ini | 3 --- Data/Sys/GameSettings/GINX69.ini | 6 ------ Data/Sys/GameSettings/GWO.ini | 2 +- Data/Sys/GameSettings/P4B.ini | 22 ++++++++++++++++++++++ Data/Sys/GameSettings/PCK.ini | 22 ++++++++++++++++++++++ Data/Sys/GameSettings/PCS.ini | 22 ++++++++++++++++++++++ Data/Sys/GameSettings/PGS.ini | 22 ++++++++++++++++++++++ Data/Sys/GameSettings/PNJ.ini | 22 ++++++++++++++++++++++ Data/Sys/GameSettings/SNS.ini | 21 +++++++++++++++++++++ 10 files changed, 132 insertions(+), 11 deletions(-) delete mode 100644 Data/Sys/GameSettings/GINX69.ini create mode 100644 Data/Sys/GameSettings/P4B.ini create mode 100644 Data/Sys/GameSettings/PCK.ini create mode 100644 Data/Sys/GameSettings/PCS.ini create mode 100644 Data/Sys/GameSettings/PGS.ini create mode 100644 Data/Sys/GameSettings/PNJ.ini create mode 100644 Data/Sys/GameSettings/SNS.ini diff --git a/Data/Sys/GameSettings/F.ini b/Data/Sys/GameSettings/F.ini index 4b5ca06217..5d994f6337 100644 --- a/Data/Sys/GameSettings/F.ini +++ b/Data/Sys/GameSettings/F.ini @@ -10,7 +10,6 @@ EmulationStateId = 4 [Video_Settings] SafeTextureCacheColorSamples = 0 -EFBScale = 2 [Video_Hacks] # Some very early NES releases use a version of the NES emulator that doesn't require EFB2Ram. diff --git a/Data/Sys/GameSettings/GALP01.ini b/Data/Sys/GameSettings/GALP01.ini index d0116b449a..a5e636f085 100644 --- a/Data/Sys/GameSettings/GALP01.ini +++ b/Data/Sys/GameSettings/GALP01.ini @@ -350,6 +350,3 @@ C03F0034 2C0E0001 EC210032 C0010034 EC210024 39C00000 281E0000 00000000 - -[Video_Settings] -EFBScale = -1 diff --git a/Data/Sys/GameSettings/GINX69.ini b/Data/Sys/GameSettings/GINX69.ini deleted file mode 100644 index 9ecbdb1d2e..0000000000 --- a/Data/Sys/GameSettings/GINX69.ini +++ /dev/null @@ -1,6 +0,0 @@ -# GINX69 - Batman Begins - -[EmuState] -# The Emulation State. 1 is worst, 5 is best, 0 is not set. -EmulationStateId = 3 -EmulationIssues = The game speed is too slow when emulation is running at 100% speed diff --git a/Data/Sys/GameSettings/GWO.ini b/Data/Sys/GameSettings/GWO.ini index c7cd21a22d..d77ef3759f 100644 --- a/Data/Sys/GameSettings/GWO.ini +++ b/Data/Sys/GameSettings/GWO.ini @@ -18,5 +18,5 @@ EmulationIssues = # Add action replay cheats here. [Video_Settings] -EFBScale = 1 +EFBScale = -1 diff --git a/Data/Sys/GameSettings/P4B.ini b/Data/Sys/GameSettings/P4B.ini new file mode 100644 index 0000000000..be542d2c3b --- /dev/null +++ b/Data/Sys/GameSettings/P4B.ini @@ -0,0 +1,22 @@ +# P4BJ01 - Biohazard 4 Preview Disc + +[Core] +# Values set here will override the main Dolphin settings. + +[EmuState] +# The Emulation State. 1 is worst, 5 is best, 0 is not set. +EmulationStateId = +EmulationIssues = + +[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] +# override value that was set in P.ini back to defaults +SafeTextureCacheColorSamples = \ No newline at end of file diff --git a/Data/Sys/GameSettings/PCK.ini b/Data/Sys/GameSettings/PCK.ini new file mode 100644 index 0000000000..394a5c393f --- /dev/null +++ b/Data/Sys/GameSettings/PCK.ini @@ -0,0 +1,22 @@ +# PCKJ01 - Pokemon Colosseum Bonus Disc + +[Core] +# Values set here will override the main Dolphin settings. + +[EmuState] +# The Emulation State. 1 is worst, 5 is best, 0 is not set. +EmulationStateId = +EmulationIssues = + +[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] +# override value that was set in P.ini back to defaults +SafeTextureCacheColorSamples = \ No newline at end of file diff --git a/Data/Sys/GameSettings/PCS.ini b/Data/Sys/GameSettings/PCS.ini new file mode 100644 index 0000000000..b95abfbcac --- /dev/null +++ b/Data/Sys/GameSettings/PCS.ini @@ -0,0 +1,22 @@ +# PCSJ01 - Pokemon Colosseum Bonus Disc + +[Core] +# Values set here will override the main Dolphin settings. + +[EmuState] +# The Emulation State. 1 is worst, 5 is best, 0 is not set. +EmulationStateId = +EmulationIssues = + +[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] +# override value that was set in P.ini back to defaults +SafeTextureCacheColorSamples = \ No newline at end of file diff --git a/Data/Sys/GameSettings/PGS.ini b/Data/Sys/GameSettings/PGS.ini new file mode 100644 index 0000000000..e3cbde2e9e --- /dev/null +++ b/Data/Sys/GameSettings/PGS.ini @@ -0,0 +1,22 @@ +# PGSJ01 - METAL GEAR SOLID Special Disc + +[Core] +# Values set here will override the main Dolphin settings. + +[EmuState] +# The Emulation State. 1 is worst, 5 is best, 0 is not set. +EmulationStateId = +EmulationIssues = + +[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] +# override value that was set in P.ini back to defaults +SafeTextureCacheColorSamples = \ No newline at end of file diff --git a/Data/Sys/GameSettings/PNJ.ini b/Data/Sys/GameSettings/PNJ.ini new file mode 100644 index 0000000000..fd56516cd9 --- /dev/null +++ b/Data/Sys/GameSettings/PNJ.ini @@ -0,0 +1,22 @@ +# PNRJ01 - NARUTO COLLECTION + +[Core] +# Values set here will override the main Dolphin settings. + +[EmuState] +# The Emulation State. 1 is worst, 5 is best, 0 is not set. +EmulationStateId = +EmulationIssues = + +[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] +# override value that was set in P.ini back to defaults +SafeTextureCacheColorSamples = \ No newline at end of file diff --git a/Data/Sys/GameSettings/SNS.ini b/Data/Sys/GameSettings/SNS.ini new file mode 100644 index 0000000000..a84de7b9f7 --- /dev/null +++ b/Data/Sys/GameSettings/SNS.ini @@ -0,0 +1,21 @@ +# SNSE52 - Nascar: The Game 2011 + +[Core] +# Values set here will override the main Dolphin settings. + +[EmuState] +# The Emulation State. 1 is worst, 5 is best, 0 is not set. +EmulationIssues = +EmulationStateId = + +[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