mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 23:20:46 -07:00
CPU: This PR fixes Fpscr, among other things.
This commit is contained in:
@ -241,7 +241,7 @@ namespace ARMeilleure.Instructions
|
||||
private static void EmitNativeCallWithGuestAddress(ArmEmitterContext context, Operand funcAddr, Operand guestAddress, bool isJump)
|
||||
{
|
||||
Operand nativeContextPtr = context.LoadArgument(OperandType.I64, 0);
|
||||
context.Store(context.Add(nativeContextPtr, Const(NativeContext.GetCallAddressOffset())), guestAddress);
|
||||
context.Store(context.Add(nativeContextPtr, Const((long)NativeContext.GetCallAddressOffset())), guestAddress);
|
||||
|
||||
EmitNativeCall(context, nativeContextPtr, funcAddr, isJump);
|
||||
}
|
||||
|
Reference in New Issue
Block a user