Interpreter: Make m_EndBlock private

This commit is contained in:
Lioncash 2017-01-17 21:16:14 -05:00
parent f785d7f869
commit e9b506638f
1 changed files with 2 additions and 2 deletions

View File

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