mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00: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:
parent
d3718b1b81
commit
371935d61e
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue