[Project64] Make CArmRecompilerOps friend to CMipsMemoryVM

This commit is contained in:
zilmar 2016-11-21 18:06:14 +11:00
parent 8ef73a3f32
commit 756e3a06df
1 changed files with 3 additions and 0 deletions

View File

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