From 756e3a06df4f90db27331b70be69870d6f65d6e5 Mon Sep 17 00:00:00 2001 From: zilmar Date: Mon, 21 Nov 2016 18:06:14 +1100 Subject: [PATCH] [Project64] Make CArmRecompilerOps friend to CMipsMemoryVM --- Source/Project64-core/N64System/Mips/MemoryVirtualMem.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Project64-core/N64System/Mips/MemoryVirtualMem.h b/Source/Project64-core/N64System/Mips/MemoryVirtualMem.h index 963e47c54..b462b1d59 100644 --- a/Source/Project64-core/N64System/Mips/MemoryVirtualMem.h +++ b/Source/Project64-core/N64System/Mips/MemoryVirtualMem.h @@ -40,6 +40,8 @@ #if defined(__i386__) || defined(_M_IX86) class CX86RecompilerOps; +#elif defined(__arm__) || defined(_M_ARM) +class CArmRecompilerOps; #endif class CMipsMemoryVM : @@ -118,6 +120,7 @@ private: friend CX86RecompilerOps; #elif defined(__arm__) || defined(_M_ARM) friend CArmRegInfo; + friend CArmRecompilerOps; #endif static void RdramChanged(CMipsMemoryVM * _this);