diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-11-24 00:09:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-24 00:09:00 -0500 |
commit | 093eb075a686d3584f59b129a200c2652a5cdb10 (patch) | |
tree | c28050eb3737be1ebb3be8853517333f4f436907 | |
parent | 0b766e4523dea156d69aab1a2a43b55f50c65071 (diff) | |
parent | 453fd470307692b63c8395177fe0f911367466d9 (diff) |
Merge pull request #12140 from liamwhite/qcr-unreachable
query_cache: demote report synced unreachable to assert
-rw-r--r-- | src/video_core/query_cache/query_cache.h | 2 |
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 return; } if (False(query_base->flags & QueryFlagBits::IsFinalValueSynced)) [[unlikely]] { - UNREACHABLE(); + ASSERT(false); return; } query_base->value += streamer->GetAmmendValue(); |