Match ABI_AlignStack with ABI_RestoreStack properly.
The relevant function is entirely unused, so it shouldn't have any effect.
This commit is contained in:
parent
b0200219dd
commit
ccbf2ac21a
|
@ -78,7 +78,7 @@ void XEmitter::ABI_CallFunctionCC16(void *func, u32 param1, u16 param2) {
|
||||||
PUSH(16, Imm16(param2));
|
PUSH(16, Imm16(param2));
|
||||||
PUSH(32, Imm32(param1));
|
PUSH(32, Imm32(param1));
|
||||||
CALL(func);
|
CALL(func);
|
||||||
ABI_AlignStack(1 * 2 + 1 * 4);
|
ABI_RestoreStack(1 * 2 + 1 * 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
void XEmitter::ABI_CallFunctionC(void *func, u32 param1) {
|
void XEmitter::ABI_CallFunctionC(void *func, u32 param1) {
|
||||||
|
|
Loading…
Reference in New Issue