forked from ShuriZma/suyu
1
0
Fork 0

query_cache: demote report synced unreachable to assert

This commit is contained in:
Liam 2023-11-23 09:33:02 -05:00
parent 91c12db070
commit 453fd47030
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ void QueryCacheBase<Traits>::CounterReport(GPUVAddr addr, QueryType counter_type
return; return;
} }
if (False(query_base->flags & QueryFlagBits::IsFinalValueSynced)) [[unlikely]] { if (False(query_base->flags & QueryFlagBits::IsFinalValueSynced)) [[unlikely]] {
UNREACHABLE(); ASSERT(false);
return; return;
} }
query_base->value += streamer->GetAmmendValue(); query_base->value += streamer->GetAmmendValue();