Enable texture hashing by default for libretro core (#809)

This commit is contained in:
wheremyfoodat
2025-09-23 20:48:12 +03:00
committed by GitHub
parent ff561d66a2
commit 2ebf17fc2b

View File

@@ -58,8 +58,13 @@ struct EmulatorConfig {
static constexpr RendererType rendererDefault = RendererType::OpenGL; static constexpr RendererType rendererDefault = RendererType::OpenGL;
#endif #endif
static constexpr bool enableFastmemDefault = true; #if defined(__LIBRETRO__)
static constexpr bool hashTexturesDefault = true;
#else
static constexpr bool hashTexturesDefault = false; static constexpr bool hashTexturesDefault = false;
#endif
static constexpr bool enableFastmemDefault = true;
bool shaderJitEnabled = shaderJitDefault; bool shaderJitEnabled = shaderJitDefault;
bool useUbershaders = ubershaderDefault; bool useUbershaders = ubershaderDefault;