Relax a little bit

This commit is contained in:
MaranBr 2026-04-27 03:29:45 +02:00 committed by crueter
parent 1fdfa2342e
commit d69b2ec771

View file

@ -133,7 +133,7 @@ void TextureCache<P>::RunGarbageCollector() {
return false; return false;
} }
const bool must_download = image.IsSafeDownload() && False(image.flags & ImageFlagBits::BadOverlap); const bool must_download = image.IsSafeDownload() && False(image.flags & ImageFlagBits::BadOverlap);
if (!aggressive_mode && !high_priority_mode && (True(image.flags & ImageFlagBits::CostlyLoad) || must_download)) { if ((!aggressive_mode && True(image.flags & ImageFlagBits::CostlyLoad)) || (!high_priority_mode && must_download)) {
return false; return false;
} }
--num_iterations; --num_iterations;