early-access version 1998

This commit is contained in:
pineappleEA 2021-08-19 18:00:46 +02:00
parent b28204133e
commit 2ee80d0e47
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 1997. This is the source code for early-access 1998.
## Legal Notice ## Legal Notice

View File

@ -1078,8 +1078,8 @@ static ResultCode GetThreadContext(Core::System& system, VAddr out_context, Hand
for (auto i = 0; i < static_cast<s32>(Core::Hardware::NUM_CPU_CORES); ++i) { for (auto i = 0; i < static_cast<s32>(Core::Hardware::NUM_CPU_CORES); ++i) {
if (thread.GetPointerUnsafe() == kernel.Scheduler(i).GetCurrentThread()) { if (thread.GetPointerUnsafe() == kernel.Scheduler(i).GetCurrentThread()) {
current = true; current = true;
break;
} }
break;
} }
// If the thread is current, retry until it isn't. // If the thread is current, retry until it isn't.