Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Match ABI_AlignStack with ABI_RestoreStack properly.
The relevant function is entirely unused, so it shouldn't have any
effect.
  • Loading branch information
comex committed Sep 29, 2013
1 parent b020021 commit ccbf2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Common/Src/x64ABI.cpp
Expand Up @@ -78,7 +78,7 @@ void XEmitter::ABI_CallFunctionCC16(void *func, u32 param1, u16 param2) {
PUSH(16, Imm16(param2));
PUSH(32, Imm32(param1));
CALL(func);
ABI_AlignStack(1 * 2 + 1 * 4);
ABI_RestoreStack(1 * 2 + 1 * 4);
}

void XEmitter::ABI_CallFunctionC(void *func, u32 param1) {
Expand Down

0 comments on commit ccbf2ac

Please sign in to comment.