Interpreter: Make m_EndBlock private
This commit is contained in:
parent
f785d7f869
commit
e9b506638f
|
@ -20,8 +20,6 @@ public:
|
||||||
void ClearCache() override;
|
void ClearCache() override;
|
||||||
const char* GetName() override;
|
const char* GetName() override;
|
||||||
|
|
||||||
static bool m_EndBlock;
|
|
||||||
|
|
||||||
static void unknown_instruction(UGeckoInstruction _inst);
|
static void unknown_instruction(UGeckoInstruction _inst);
|
||||||
|
|
||||||
// Branch Instructions
|
// Branch Instructions
|
||||||
|
@ -303,6 +301,8 @@ private:
|
||||||
static void Helper_FloatCompareOrdered(UGeckoInstruction _inst, double a, double b);
|
static void Helper_FloatCompareOrdered(UGeckoInstruction _inst, double a, double b);
|
||||||
static void Helper_FloatCompareUnordered(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.
|
// TODO: These should really be in the save state, although it's unlikely to matter much.
|
||||||
// They are for lwarx and its friend stwcxd.
|
// They are for lwarx and its friend stwcxd.
|
||||||
static bool g_bReserve;
|
static bool g_bReserve;
|
||||||
|
|
Loading…
Reference in New Issue