diff options
| author | JMC47 <JMC4789@gmail.com> | 2025-10-28 17:32:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-28 17:32:35 -0400 |
| commit | 032fdf6335ef3ed9986bdaeeed4d5cde36cd82f6 (patch) | |
| tree | 45fd4e45c6caa8a1e174dc21e51a679f692b82c1 | |
| parent | 3d764f7b42b860db834159bb2db12e88abdffbed (diff) | |
| parent | fca9e6a3629093910c7870c75f3f492e83a202dd (diff) | |
Merge pull request #14039 from mbc07/tex_filter_settings_followup
GameSettings: fix texture filtering settings for earlier Just Dance games
| -rw-r--r-- | Data/Sys/GameSettings/SJD.ini | 4 | ||||
| -rw-r--r-- | Data/Sys/GameSettings/SJHE41.ini | 4 | ||||
| -rw-r--r-- | Data/Sys/GameSettings/SJTP41.ini | 4 | ||||
| -rw-r--r-- | Data/Sys/GameSettings/SJX.ini | 14 |
4 files changed, 26 insertions, 0 deletions
diff --git a/Data/Sys/GameSettings/SJD.ini b/Data/Sys/GameSettings/SJD.ini index 3e20b7cef9..b4b7b8a8aa 100644 --- a/Data/Sys/GameSettings/SJD.ini +++ b/Data/Sys/GameSettings/SJD.ini @@ -11,3 +11,7 @@ [Video_Enhancements] ForceTextureFiltering = 0 + +[Video_Hacks] +# Manual texture sampling fixes the video issues. +FastTextureSampling = False diff --git a/Data/Sys/GameSettings/SJHE41.ini b/Data/Sys/GameSettings/SJHE41.ini index 79bc710737..0800b1a0b8 100644 --- a/Data/Sys/GameSettings/SJHE41.ini +++ b/Data/Sys/GameSettings/SJHE41.ini @@ -11,3 +11,7 @@ [Video_Enhancements] ForceTextureFiltering = 0 + +[Video_Hacks] +# Manual texture sampling fixes the video issues. +FastTextureSampling = False diff --git a/Data/Sys/GameSettings/SJTP41.ini b/Data/Sys/GameSettings/SJTP41.ini index 983587e95d..333f8c56af 100644 --- a/Data/Sys/GameSettings/SJTP41.ini +++ b/Data/Sys/GameSettings/SJTP41.ini @@ -11,3 +11,7 @@ [Video_Enhancements] ForceTextureFiltering = 0 + +[Video_Hacks] +# Manual texture sampling fixes the video issues. +FastTextureSampling = False diff --git a/Data/Sys/GameSettings/SJX.ini b/Data/Sys/GameSettings/SJX.ini new file mode 100644 index 0000000000..5c1035b895 --- /dev/null +++ b/Data/Sys/GameSettings/SJX.ini @@ -0,0 +1,14 @@ +# SJXD41, SJXE41, SJXP41 - Just Dance 4 + +[Core] +# Values set here will override the main Dolphin settings. + +[OnFrame] +# Add memory patches to be applied every frame here. + +[ActionReplay] +# Add action replay cheats here. + +[Video_Enhancements] +# Linear filtering completely messes up the initial Ubisoft logo and loading screen and a few DLCs. +ForceTextureFiltering = 0 |
