Browse Source

Merge pull request #12140 from liamwhite/qcr-unreachable

query_cache: demote report synced unreachable to assert
nce_cpp
liamwhite 2 years ago
committed by GitHub
parent
commit
1c73f4cd6f
  1. 2
      src/video_core/query_cache/query_cache.h

2
src/video_core/query_cache/query_cache.h

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

Loading…
Cancel
Save