Skip to content

Commit

Permalink
Revert "Fix JIT (#7)"
Browse files Browse the repository at this point in the history
This reverts commit 97fe621.

It broke everything :(
  • Loading branch information
zandm7 committed Mar 23, 2022
1 parent 6f2ac3a commit 22e05f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1363,7 +1363,7 @@ public KernelResult ControlCodeMemory(int handle, CodeMemoryOperation op, ulong

KCodeMemory codeMemory = currentProcess.HandleTable.GetObject<KCodeMemory>(handle);

if (codeMemory == null /* || codeMemory.Owner == currentProcess */)
if (codeMemory == null || codeMemory.Owner == currentProcess)
{
return KernelResult.InvalidHandle;
}
Expand Down

0 comments on commit 22e05f1

Please sign in to comment.