From 1fdaec2b0fc1fd26f89062a16b95f279be5289b0 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Mon, 30 Jun 2025 19:15:43 +0300 Subject: [PATCH] GPU: Don't hash textures by default --- include/config.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/config.hpp b/include/config.hpp index 5e1bd8a7..958f2248 100644 --- a/include/config.hpp +++ b/include/config.hpp @@ -62,7 +62,7 @@ struct EmulatorConfig { static constexpr RendererType rendererDefault = RendererType::OpenGL; #endif - static constexpr bool hashTexturesDefault = true; + static constexpr bool hashTexturesDefault = false; bool shaderJitEnabled = shaderJitDefault; bool useUbershaders = ubershaderDefault; @@ -127,4 +127,4 @@ struct EmulatorConfig { static LanguageCodes languageCodeFromString(std::string inString); static const char* languageCodeToString(LanguageCodes code); -}; \ No newline at end of file +};