From f7f23637d11d6abbba54a75c6f18a1b54b1e7300 Mon Sep 17 00:00:00 2001 From: Miksel12 Date: Mon, 1 Jun 2020 17:20:46 +0200 Subject: [PATCH] INI changes --- Data/Sys/GameSettings/D85.ini | 15 +++++++++++++++ Data/Sys/GameSettings/D86.ini | 15 +++++++++++++++ Data/Sys/GameSettings/D95.ini | 14 ++++++++++++++ Data/Sys/GameSettings/DAX.ini | 20 ++++++++++++++++++++ Data/Sys/GameSettings/G4P.ini | 19 +++++++++++++++++++ Data/Sys/GameSettings/G95.ini | 14 ++++++++++++++ Data/Sys/GameSettings/G99.ini | 14 ++++++++++++++ Data/Sys/GameSettings/GCI.ini | 14 +++++++++++++- Data/Sys/GameSettings/GR6.ini | 19 +++++++++++++++++++ Data/Sys/GameSettings/GYA.ini | 16 ++++++++++++++++ Data/Sys/GameSettings/HC4.ini | 14 ++++++++++++++ Data/Sys/GameSettings/R6B.ini | 2 +- Data/Sys/GameSettings/RBK.ini | 10 ---------- Data/Sys/GameSettings/RBY.ini | 16 ++++++++++++++++ Data/Sys/GameSettings/RDF.ini | 1 + Data/Sys/GameSettings/RMHJ08.ini | 5 +---- Data/Sys/GameSettings/RNB.ini | 17 +++++++++++++++++ Data/Sys/GameSettings/RPY.ini | 1 + Data/Sys/GameSettings/RST.ini | 16 ++++++++++++++++ Data/Sys/GameSettings/RTH.ini | 19 +++++++++++++++++++ Data/Sys/GameSettings/RW7.ini | 17 +++++++++++++++++ Data/Sys/GameSettings/RYB.ini | 10 ---------- Data/Sys/GameSettings/SEC.ini | 19 +++++++++++++++++++ Data/Sys/GameSettings/SMN.ini | 3 --- Data/Sys/GameSettings/SOM.ini | 7 +------ Data/Sys/GameSettings/SVM.ini | 6 ++++-- Data/Sys/GameSettings/WL9.ini | 16 ++++++++++++++++ 27 files changed, 302 insertions(+), 37 deletions(-) create mode 100644 Data/Sys/GameSettings/D85.ini create mode 100644 Data/Sys/GameSettings/D86.ini create mode 100644 Data/Sys/GameSettings/D95.ini create mode 100644 Data/Sys/GameSettings/DAX.ini create mode 100644 Data/Sys/GameSettings/G4P.ini create mode 100644 Data/Sys/GameSettings/G95.ini create mode 100644 Data/Sys/GameSettings/G99.ini create mode 100644 Data/Sys/GameSettings/GR6.ini create mode 100644 Data/Sys/GameSettings/GYA.ini create mode 100644 Data/Sys/GameSettings/HC4.ini create mode 100644 Data/Sys/GameSettings/RBY.ini create mode 100644 Data/Sys/GameSettings/RNB.ini create mode 100644 Data/Sys/GameSettings/RST.ini create mode 100644 Data/Sys/GameSettings/RTH.ini create mode 100644 Data/Sys/GameSettings/RW7.ini create mode 100644 Data/Sys/GameSettings/SEC.ini create mode 100644 Data/Sys/GameSettings/WL9.ini diff --git a/Data/Sys/GameSettings/D85.ini b/Data/Sys/GameSettings/D85.ini new file mode 100644 index 0000000000..3064b4c826 --- /dev/null +++ b/Data/Sys/GameSettings/D85.ini @@ -0,0 +1,15 @@ +# D85E01 - Interactive Multi Game Demo Disc v12 + +[Core] +# Values set here will override the main Dolphin settings. +FPRF = True +MMU = True + +[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. diff --git a/Data/Sys/GameSettings/D86.ini b/Data/Sys/GameSettings/D86.ini new file mode 100644 index 0000000000..0768da9697 --- /dev/null +++ b/Data/Sys/GameSettings/D86.ini @@ -0,0 +1,15 @@ +# D86P01 - Interactive Multi Game Demo Disc v12 + +[Core] +# Values set here will override the main Dolphin settings. +FPRF = True +MMU = True + +[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. diff --git a/Data/Sys/GameSettings/D95.ini b/Data/Sys/GameSettings/D95.ini new file mode 100644 index 0000000000..cf21815dec --- /dev/null +++ b/Data/Sys/GameSettings/D95.ini @@ -0,0 +1,14 @@ +# D95P01 - Interactive Multi Game Demo Disc v5 + +[Core] +# Values set here will override the main Dolphin settings. +FPRF = True + +[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. diff --git a/Data/Sys/GameSettings/DAX.ini b/Data/Sys/GameSettings/DAX.ini new file mode 100644 index 0000000000..f02ea1326f --- /dev/null +++ b/Data/Sys/GameSettings/DAX.ini @@ -0,0 +1,20 @@ +# DAXP01, DAXE01 - The Legend of Zelda Skyward Sword + +[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_Hacks] +EFBAccessEnable = True +EFBEmulateFormatChanges = True + +[Video_Enhancements] +ArbitraryMipmapDetection = True diff --git a/Data/Sys/GameSettings/G4P.ini b/Data/Sys/GameSettings/G4P.ini new file mode 100644 index 0000000000..0fca83219e --- /dev/null +++ b/Data/Sys/GameSettings/G4P.ini @@ -0,0 +1,19 @@ +# G4PJ13 - The Sims + +[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 + +[Video_Hacks] +EFBToTextureEnable = False diff --git a/Data/Sys/GameSettings/G95.ini b/Data/Sys/GameSettings/G95.ini new file mode 100644 index 0000000000..b4dee1baf5 --- /dev/null +++ b/Data/Sys/GameSettings/G95.ini @@ -0,0 +1,14 @@ +# D95P01, G95E01 - Interactive Multi Game Demo Disc v5 + +[Core] +# Values set here will override the main Dolphin settings. +FPRF = True + +[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. diff --git a/Data/Sys/GameSettings/G99.ini b/Data/Sys/GameSettings/G99.ini new file mode 100644 index 0000000000..05df9c1715 --- /dev/null +++ b/Data/Sys/GameSettings/G99.ini @@ -0,0 +1,14 @@ +# G99E01, G99P01 - Interactive Multi Game Demo Disc v1 + +[Core] +# Values set here will override the main Dolphin settings. +MMU = True + +[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. diff --git a/Data/Sys/GameSettings/GCI.ini b/Data/Sys/GameSettings/GCI.ini index 0637292deb..75f6377620 100644 --- a/Data/Sys/GameSettings/GCI.ini +++ b/Data/Sys/GameSettings/GCI.ini @@ -1,7 +1,19 @@ # GCIE69, GCIP69 - The Sims + [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] -[Gecko] +# Add action replay cheats here. + [Video_Settings] SafeTextureCacheColorSamples = 0 + +[Video_Hacks] +EFBToTextureEnable = False diff --git a/Data/Sys/GameSettings/GR6.ini b/Data/Sys/GameSettings/GR6.ini new file mode 100644 index 0000000000..24f94b53c7 --- /dev/null +++ b/Data/Sys/GameSettings/GR6.ini @@ -0,0 +1,19 @@ +# GR6P78, GR6E78, GR6D78, GR6F78 - Bratz: Rock Angelz + +[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 + +[Video_Hacks] +EFBToTextureEnable = False diff --git a/Data/Sys/GameSettings/GYA.ini b/Data/Sys/GameSettings/GYA.ini new file mode 100644 index 0000000000..a1831d952c --- /dev/null +++ b/Data/Sys/GameSettings/GYA.ini @@ -0,0 +1,16 @@ +# GYAP78, GYAD78, GYAE78, GYAX78 - Barnyard (GC) + +[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_Hacks] +EFBToTextureEnable = False diff --git a/Data/Sys/GameSettings/HC4.ini b/Data/Sys/GameSettings/HC4.ini new file mode 100644 index 0000000000..b7a5d42428 --- /dev/null +++ b/Data/Sys/GameSettings/HC4.ini @@ -0,0 +1,14 @@ +# HC4E9Z, HC4P9Z - Crunchyroll Channel + +[Core] +# Values set here will override the main Dolphin settings. +MMU = True + +[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. diff --git a/Data/Sys/GameSettings/R6B.ini b/Data/Sys/GameSettings/R6B.ini index 814b65454a..61dfb94edd 100644 --- a/Data/Sys/GameSettings/R6B.ini +++ b/Data/Sys/GameSettings/R6B.ini @@ -17,4 +17,4 @@ ForceFiltering = False [Video_Hacks] EFBToTextureEnable = False - +DeferEFBCopies = False diff --git a/Data/Sys/GameSettings/RBK.ini b/Data/Sys/GameSettings/RBK.ini index 3fb30e2eb9..f94dda6997 100644 --- a/Data/Sys/GameSettings/RBK.ini +++ b/Data/Sys/GameSettings/RBK.ini @@ -14,13 +14,3 @@ [Video_Settings] # Add any video settings here - -[Wiimote.Shake] -Soft = 3.0 -Medium = 4.0 -Hard = 4.8 - -[Wiimote.Swing] -Slow = 3.5 -Medium = 4.8 -Fast = 6 \ No newline at end of file diff --git a/Data/Sys/GameSettings/RBY.ini b/Data/Sys/GameSettings/RBY.ini new file mode 100644 index 0000000000..de39d1c310 --- /dev/null +++ b/Data/Sys/GameSettings/RBY.ini @@ -0,0 +1,16 @@ +# RBYP78, RBYJ78, RBYE78 - Barnyard (Wii) + +[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_Hacks] +EFBToTextureEnable = False diff --git a/Data/Sys/GameSettings/RDF.ini b/Data/Sys/GameSettings/RDF.ini index 78b505add0..2fd071237f 100644 --- a/Data/Sys/GameSettings/RDF.ini +++ b/Data/Sys/GameSettings/RDF.ini @@ -14,3 +14,4 @@ [Video_Hacks] EFBToTextureEnable = False +DeferEFBCopies = False diff --git a/Data/Sys/GameSettings/RMHJ08.ini b/Data/Sys/GameSettings/RMHJ08.ini index a969854577..ea9108648e 100644 --- a/Data/Sys/GameSettings/RMHJ08.ini +++ b/Data/Sys/GameSettings/RMHJ08.ini @@ -1,4 +1,4 @@ -# RMHJ08 - MONSTER HUNTER 3 +# RMHJ08 - Monster Hunter Tri [OnLoad] # Add memory patches to be loaded once on boot here. @@ -12,6 +12,3 @@ $Bloom OFF [ActionReplay] # Add action replay cheats here. - -[Video_Settings] -SafeTextureCacheColorSamples = 0 diff --git a/Data/Sys/GameSettings/RNB.ini b/Data/Sys/GameSettings/RNB.ini new file mode 100644 index 0000000000..4278aaae32 --- /dev/null +++ b/Data/Sys/GameSettings/RNB.ini @@ -0,0 +1,17 @@ +# RNBE69, RNBP69, RNBX69 - NBA Live 08 + +[Core] +# Values set here will override the main Dolphin settings. +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_Hacks] +EFBToTextureEnable = False diff --git a/Data/Sys/GameSettings/RPY.ini b/Data/Sys/GameSettings/RPY.ini index 66fb07f01b..696c1e206f 100644 --- a/Data/Sys/GameSettings/RPY.ini +++ b/Data/Sys/GameSettings/RPY.ini @@ -2,6 +2,7 @@ [Core] # Values set here will override the main Dolphin settings. +FPRF = True [OnLoad] # Add memory patches to be loaded once on boot here. diff --git a/Data/Sys/GameSettings/RST.ini b/Data/Sys/GameSettings/RST.ini new file mode 100644 index 0000000000..3ab01532bd --- /dev/null +++ b/Data/Sys/GameSettings/RST.ini @@ -0,0 +1,16 @@ +# RSTJ52, RSTP64, RSTE64 - Star Wars: The Force Unleashed + +[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_Hacks] +DeferEFBCopies = False diff --git a/Data/Sys/GameSettings/RTH.ini b/Data/Sys/GameSettings/RTH.ini new file mode 100644 index 0000000000..b9fa18cc3f --- /dev/null +++ b/Data/Sys/GameSettings/RTH.ini @@ -0,0 +1,19 @@ +# RTHP52, RTHE52 - Tony Hawk's Downhill Jam + +[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 + +[Video_Hacks] +EFBAccessEnable = False diff --git a/Data/Sys/GameSettings/RW7.ini b/Data/Sys/GameSettings/RW7.ini new file mode 100644 index 0000000000..8c284e2dfe --- /dev/null +++ b/Data/Sys/GameSettings/RW7.ini @@ -0,0 +1,17 @@ +# RW7E41 - Shaun White Snowboarding: Road Trip - Target Limited Edition + +[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_Hacks] +EFBToTextureEnable = False +DeferEFBCopies = False diff --git a/Data/Sys/GameSettings/RYB.ini b/Data/Sys/GameSettings/RYB.ini index 41b1b63ef2..6f908435fe 100644 --- a/Data/Sys/GameSettings/RYB.ini +++ b/Data/Sys/GameSettings/RYB.ini @@ -15,13 +15,3 @@ SyncGPU = True [Video_Settings] # Add any video settings here - -[Wiimote.Shake] -Soft = 3.0 -Medium = 4.0 -Hard = 4.8 - -[Wiimote.Swing] -Slow = 3.5 -Medium = 4.8 -Fast = 6 \ No newline at end of file diff --git a/Data/Sys/GameSettings/SEC.ini b/Data/Sys/GameSettings/SEC.ini new file mode 100644 index 0000000000..8c735964ee --- /dev/null +++ b/Data/Sys/GameSettings/SEC.ini @@ -0,0 +1,19 @@ +# SECP69, SECE69 - Create + +[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 + +[Video_Hacks] +EFBToTextureEnable = False diff --git a/Data/Sys/GameSettings/SMN.ini b/Data/Sys/GameSettings/SMN.ini index 139cf28fb4..85e4ec9e91 100644 --- a/Data/Sys/GameSettings/SMN.ini +++ b/Data/Sys/GameSettings/SMN.ini @@ -12,9 +12,6 @@ [ActionReplay] # Add action replay cheats here. -[Video_Settings] -SafeTextureCacheColorSamples = 512 - [Video_Hacks] [Video_Stereoscopy] diff --git a/Data/Sys/GameSettings/SOM.ini b/Data/Sys/GameSettings/SOM.ini index 1b29c25d32..bb59fb9c4b 100644 --- a/Data/Sys/GameSettings/SOM.ini +++ b/Data/Sys/GameSettings/SOM.ini @@ -12,11 +12,6 @@ [ActionReplay] # Add action replay cheats here. -[Video] - -[Video_Settings] - [Video_Hacks] ImmediateXFBEnable = False - -[Video_Enhancements] \ No newline at end of file +EFBToTextureEnable = False diff --git a/Data/Sys/GameSettings/SVM.ini b/Data/Sys/GameSettings/SVM.ini index e4d69ea546..ea94d7e7ab 100644 --- a/Data/Sys/GameSettings/SVM.ini +++ b/Data/Sys/GameSettings/SVM.ini @@ -1,4 +1,4 @@ -# SVME01, SVMJ01, SVMP01 - super mario collection +# SVME01, SVMJ01, SVMP01 - Super Mario All-Stars: 25th Anniversary Edition [Core] # Values set here will override the main Dolphin settings. @@ -12,6 +12,8 @@ [ActionReplay] # Add action replay cheats here. +[Video_Settings] +SafeTextureCacheColorSamples = 0 + [Video_Hacks] EFBToTextureEnable = False - diff --git a/Data/Sys/GameSettings/WL9.ini b/Data/Sys/GameSettings/WL9.ini new file mode 100644 index 0000000000..83dae83b5a --- /dev/null +++ b/Data/Sys/GameSettings/WL9.ini @@ -0,0 +1,16 @@ +# WL9EYD - Let's Create! Pottery + +[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_Hacks] +EFBToTextureEnable = False