VideoCommon:FramebufferManager: Mark cache as valid after refresh

Otherwise we might never hit the early return
if either depth or color doesnt have any active
tiles.
This commit is contained in:
Robin Kertels 2022-10-16 17:23:10 +02:00
parent d3718b1b81
commit 371935d61e
No known key found for this signature in database
GPG Key ID: 3824904F14D40757
1 changed files with 3 additions and 0 deletions

View File

@ -493,6 +493,9 @@ void FramebufferManager::RefreshPeekCache()
flush_command_buffer = true;
}
}
m_efb_depth_cache.valid = true;
m_efb_color_cache.valid = true;
}
else
{