qt: Do not preload textures when custom textures are off (#1629)

This commit is contained in:
Cool Guy 2026-01-21 00:07:54 +10:00 committed by GitHub
parent c7e0364342
commit 671faf8dca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -64,7 +64,7 @@ void EmuThread::run() {
MicroProfileOnThreadCreate("EmuThread");
const auto scope = core_context.Acquire();
if (Settings::values.preload_textures) {
if (Settings::values.custom_textures && Settings::values.preload_textures) {
emit LoadProgress(VideoCore::LoadCallbackStage::Preload, 0, 0);
system.CustomTexManager().PreloadTextures(
stop_run, [this](VideoCore::LoadCallbackStage stage, std::size_t value,