From e9b506638f485e748adc2029d73a5ef944d46d98 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 17 Jan 2017 21:16:14 -0500 Subject: [PATCH] Interpreter: Make m_EndBlock private --- Source/Core/Core/PowerPC/Interpreter/Interpreter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter.h b/Source/Core/Core/PowerPC/Interpreter/Interpreter.h index b756fd9ef1..1f5ec62740 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter.h +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter.h @@ -20,8 +20,6 @@ public: void ClearCache() override; const char* GetName() override; - static bool m_EndBlock; - static void unknown_instruction(UGeckoInstruction _inst); // Branch Instructions @@ -303,6 +301,8 @@ private: static void Helper_FloatCompareOrdered(UGeckoInstruction _inst, double a, double b); static void Helper_FloatCompareUnordered(UGeckoInstruction _inst, double a, double b); + static bool m_EndBlock; + // TODO: These should really be in the save state, although it's unlikely to matter much. // They are for lwarx and its friend stwcxd. static bool g_bReserve;