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:
parent
d3718b1b81
commit
371935d61e
|
@ -493,6 +493,9 @@ void FramebufferManager::RefreshPeekCache()
|
|||
flush_command_buffer = true;
|
||||
}
|
||||
}
|
||||
|
||||
m_efb_depth_cache.valid = true;
|
||||
m_efb_color_cache.valid = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue