From 219019a39ba2fd684f37116fc1d1b025f84052f4 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Thu, 2 Apr 2020 14:42:18 +0700 Subject: [PATCH] Enable dithering quantization by default. --- src/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.cpp b/src/Config.cpp index 77d40640..eebd5710 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -40,7 +40,7 @@ void Config::resetToDefaults() generalEmulation.enableLOD = 1; generalEmulation.enableHiresNoiseDithering = 0; generalEmulation.enableDitheringPattern = 0; - generalEmulation.enableDitheringQuantization = 0; + generalEmulation.enableDitheringQuantization = 1; generalEmulation.rdramImageDitheringMode = BufferDitheringMode::bdmBlueNoise; generalEmulation.enableHWLighting = 0; generalEmulation.enableCustomSettings = 1;