mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-20 11:57:01 +02:00
Relax a little bit
This commit is contained in:
parent
1fdfa2342e
commit
d69b2ec771
1 changed files with 1 additions and 1 deletions
|
|
@ -133,7 +133,7 @@ void TextureCache<P>::RunGarbageCollector() {
|
|||
return false;
|
||||
}
|
||||
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;
|
||||
}
|
||||
--num_iterations;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue