diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2023-12-01 13:48:26 -0600 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2023-12-01 14:23:56 -0600 |
| commit | d57c1cbe6cae31f349337e107cf758deb6baa182 (patch) | |
| tree | d63fdf4edfad959eaef2af6e09977f4d4b4e29b6 /Source/Android | |
| parent | 5f7e9d3bf1e522353fcaad7535e1103055ec550f (diff) | |
Android / Core / DolphinQt: disable arbitrary mipmap detection by default, let the games that need it be enabled with a config option, there aren't many of them
Diffstat (limited to 'Source/Android')
| -rw-r--r-- | Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/BooleanSetting.kt | 2 | ||||
| -rw-r--r-- | Source/Android/app/src/main/res/values/strings.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/BooleanSetting.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/BooleanSetting.kt index 2d2a0065b4..c2b210102f 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/BooleanSetting.kt +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/BooleanSetting.kt @@ -762,7 +762,7 @@ enum class BooleanSetting( Settings.FILE_GFX, Settings.SECTION_GFX_ENHANCEMENTS, "ArbitraryMipmapDetection", - true + false ), GFX_CC_CORRECT_COLOR_SPACE( Settings.FILE_GFX, diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml index 9575ec0eb2..f60e25c730 100644 --- a/Source/Android/app/src/main/res/values/strings.xml +++ b/Source/Android/app/src/main/res/values/strings.xml @@ -222,7 +222,7 @@ <string name="disable_copy_filter">Disable Copy Filter</string> <string name="disable_copy_filter_description">Disables the blending of adjacent rows when copying the EFB. This is known in some games as \"deflickering\" or \"smoothing\". Disabling the filter is usually safe, and may result in a sharper image.</string> <string name="arbitrary_mipmap_detection">Arbitrary Mipmap Detection</string> - <string name="arbitrary_mipmap_detection_description">Enables detection of arbitrary mipmaps, which some games use for special distance-based effects.\nMay have false positives that result in blurry textures at increased internal resolution, such as in games that use very low resolution mipmaps. Disabling this can also reduce stutter in games that frequently load new textures.\n\nIf unsure, leave this checked.</string> + <string name="arbitrary_mipmap_detection_description">Enables detection of arbitrary mipmaps, which some games use for special distance-based effects.\nMay have false positives that result in blurry textures at increased internal resolution, such as in games that use very low resolution mipmaps. Disabling this can also reduce stutter in games that frequently load new textures.\n\nIf unsure, leave this unchecked.</string> <string name="color_correction_submenu">Color Correction</string> <string name="color_space">Color Space</string> <string name="correct_color_space">Correct Color Space</string> |
