From dea88ef5a1de31602c208ddb39bff3984f12b399 Mon Sep 17 00:00:00 2001 From: comex Date: Fri, 24 Apr 2015 22:41:10 -0400 Subject: [PATCH] ITYM PowerPC::Write_U{8,16}, not Memory:: PowerPC does exceptions and hardware and stuff, Memory doesn't. I did not realize until a few minutes ago that there were two versions of these functions. This is why namespaces suck. Anyway, these were added by Mullin earlier this year. --- Source/Core/Core/PowerPC/JitArm32/JitAsm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitArm32/JitAsm.cpp b/Source/Core/Core/PowerPC/JitArm32/JitAsm.cpp index f00478858a..a971f7ad3e 100644 --- a/Source/Core/Core/PowerPC/JitArm32/JitAsm.cpp +++ b/Source/Core/Core/PowerPC/JitArm32/JitAsm.cpp @@ -559,7 +559,7 @@ void JitArmAsmRoutineManager::GenerateCommon() PUSH(5, R0, R1, R2, R3, _LR); VMOV(R0, S0); MOV(R1, R10); - MOVI2R(R10, (u32)&Memory::Write_U8); + MOVI2R(R10, (u32)&PowerPC::Write_U8); BL(R10); POP(5, R0, R1, R2, R3, _PC); } @@ -614,7 +614,7 @@ void JitArmAsmRoutineManager::GenerateCommon() PUSH(5, R0, R1, R2, R3, _LR); VMOV(R0, S0); MOV(R1, R10); - MOVI2R(R10, (u32)&Memory::Write_U16); + MOVI2R(R10, (u32)&PowerPC::Write_U16); BL(R10); POP(5, R0, R1, R2, R3, _PC);