early-access version 1596

main
pineappleEA 2021-04-14 03:41:25 +02:00
parent 6748df7ec1
commit 6b7550f53d
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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.