Fix underflow in ZCULL sync

This commit is contained in:
kd-11 2022-09-30 22:48:47 +03:00 committed by kd-11
parent 0cc981ec18
commit a0e2a3db1d
1 changed files with 2 additions and 1 deletions

View File

@ -490,7 +490,8 @@ namespace rsx
// Delete all statistics caches but leave the current one
const u32 current_index = m_statistics_tag_id;
for (u32 index = current_index - 1; index != current_index;)
const u32 previous_index = (current_index + max_stat_registers - 1) % max_stat_registers;
for (u32 index = previous_index; index != current_index;)
{
if (m_statistics_map[index].flags == 0)
{