summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar liamwhite2023-11-24 00:09:00 -0500
committerGravatar GitHub2023-11-24 00:09:00 -0500
commit093eb075a686d3584f59b129a200c2652a5cdb10 (patch)
treec28050eb3737be1ebb3be8853517333f4f436907 /src
parentMerge pull request #12076 from german77/resource (diff)
parentquery_cache: demote report synced unreachable to assert (diff)
downloadyuzu-093eb075a686d3584f59b129a200c2652a5cdb10.tar.gz
yuzu-093eb075a686d3584f59b129a200c2652a5cdb10.tar.xz
yuzu-093eb075a686d3584f59b129a200c2652a5cdb10.zip
Merge pull request #12140 from liamwhite/qcr-unreachable
query_cache: demote report synced unreachable to assert
Diffstat (limited to 'src')
-rw-r--r--src/video_core/query_cache/query_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/query_cache/query_cache.h b/src/video_core/query_cache/query_cache.h
index 78b42b518..efa9adf7a 100644
--- a/src/video_core/query_cache/query_cache.h
+++ b/src/video_core/query_cache/query_cache.h
@@ -266,7 +266,7 @@ void QueryCacheBase<Traits>::CounterReport(GPUVAddr addr, QueryType counter_type
266 return; 266 return;
267 } 267 }
268 if (False(query_base->flags & QueryFlagBits::IsFinalValueSynced)) [[unlikely]] { 268 if (False(query_base->flags & QueryFlagBits::IsFinalValueSynced)) [[unlikely]] {
269 UNREACHABLE(); 269 ASSERT(false);
270 return; 270 return;
271 } 271 }
272 query_base->value += streamer->GetAmmendValue(); 272 query_base->value += streamer->GetAmmendValue();