mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-14 08:32:41 +00:00
vk_master_semaphore: Add missing const qualifier for IsFree()
This member function doesn't modify class state.
This commit is contained in:
@@ -35,7 +35,7 @@ public:
|
||||
}
|
||||
|
||||
/// Returns true when a tick has been hit by the GPU.
|
||||
[[nodiscard]] bool IsFree(u64 tick) {
|
||||
[[nodiscard]] bool IsFree(u64 tick) const noexcept {
|
||||
return gpu_tick.load(std::memory_order_relaxed) >= tick;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user