Browse Source
Merge pull request #12140 from liamwhite/qcr-unreachable
query_cache: demote report synced unreachable to assert
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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(); |
|
|
|
|