early-access version 1596
This commit is contained in:
parent
6748df7ec1
commit
6b7550f53d
2 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 1595.
|
||||
This is the source code for early-access 1596.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -35,8 +35,8 @@ public:
|
|||
}
|
||||
|
||||
/// Returns true when a tick has been hit by the GPU.
|
||||
[[nodiscard]] bool IsFree(u64 tick) {
|
||||
return gpu_tick.load(std::memory_order_relaxed) >= tick;
|
||||
[[nodiscard]] bool IsFree(u64 tick) const noexcept {
|
||||
return KnownGpuTick() >= tick;
|
||||
}
|
||||
|
||||
/// Advance to the logical tick.
|
||||
|
|
Loading…
Reference in a new issue