From ccbf2ac21a7f391b2bf49c88131f5f9a72a82945 Mon Sep 17 00:00:00 2001 From: comex Date: Sun, 29 Sep 2013 14:49:53 -0400 Subject: [PATCH] Match ABI_AlignStack with ABI_RestoreStack properly. The relevant function is entirely unused, so it shouldn't have any effect. --- Source/Core/Common/Src/x64ABI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Src/x64ABI.cpp b/Source/Core/Common/Src/x64ABI.cpp index e56db6ef34..54d19c7775 100644 --- a/Source/Core/Common/Src/x64ABI.cpp +++ b/Source/Core/Common/Src/x64ABI.cpp @@ -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) {