mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
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:
@ -493,6 +493,9 @@ void FramebufferManager::RefreshPeekCache()
|
|||||||
flush_command_buffer = true;
|
flush_command_buffer = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_efb_depth_cache.valid = true;
|
||||||
|
m_efb_color_cache.valid = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user