mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-17 18:27:57 -05:00
Fix typos in video_core
This commit is contained in:
@ -269,7 +269,7 @@ void QueryCacheBase<Traits>::CounterReport(GPUVAddr addr, QueryType counter_type
|
||||
ASSERT(false);
|
||||
return;
|
||||
}
|
||||
query_base->value += streamer->GetAmmendValue();
|
||||
query_base->value += streamer->GetAmendValue();
|
||||
streamer->SetAccumulationValue(query_base->value);
|
||||
if (True(query_base->flags & QueryFlagBits::HasTimestamp)) {
|
||||
u64 timestamp = impl->gpu.GetTicks();
|
||||
|
@ -78,12 +78,12 @@ public:
|
||||
return dependence_mask;
|
||||
}
|
||||
|
||||
u64 GetAmmendValue() const {
|
||||
return ammend_value;
|
||||
u64 GetAmendValue() const {
|
||||
return amend_value;
|
||||
}
|
||||
|
||||
void SetAccumulationValue(u64 new_value) {
|
||||
acumulation_value = new_value;
|
||||
accumulation_value = new_value;
|
||||
}
|
||||
|
||||
protected:
|
||||
@ -95,8 +95,8 @@ protected:
|
||||
const size_t id;
|
||||
u64 dependence_mask;
|
||||
u64 dependent_mask;
|
||||
u64 ammend_value{};
|
||||
u64 acumulation_value{};
|
||||
u64 amend_value{};
|
||||
u64 accumulation_value{};
|
||||
};
|
||||
|
||||
template <typename QueryType>
|
||||
|
Reference in New Issue
Block a user