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:
comex 2013-09-29 14:49:53 -04:00
parent b0200219dd
commit ccbf2ac21a
1 changed files with 1 additions and 1 deletions

View File

@ -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) {