mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
fix 64-bit build
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1579 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -282,7 +282,7 @@ void stfsx(UGeckoInstruction inst)
|
|||||||
INSTRUCTION_START;
|
INSTRUCTION_START;
|
||||||
#ifdef _M_X64
|
#ifdef _M_X64
|
||||||
Default(inst); return;
|
Default(inst); return;
|
||||||
#endif
|
#else
|
||||||
gpr.FlushLockX(ABI_PARAM1);
|
gpr.FlushLockX(ABI_PARAM1);
|
||||||
fpr.Lock(inst.RS);
|
fpr.Lock(inst.RS);
|
||||||
MOV(32, R(ABI_PARAM1), gpr.R(inst.RB));
|
MOV(32, R(ABI_PARAM1), gpr.R(inst.RB));
|
||||||
@ -295,7 +295,7 @@ void stfsx(UGeckoInstruction inst)
|
|||||||
MOV(32, MDisp(ABI_PARAM1, (u32)Memory::base), R(EAX));
|
MOV(32, MDisp(ABI_PARAM1, (u32)Memory::base), R(EAX));
|
||||||
gpr.UnlockAllX();
|
gpr.UnlockAllX();
|
||||||
fpr.UnlockAll();
|
fpr.UnlockAll();
|
||||||
return;
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user