removed mention of CC_Core
This commit is contained in:
parent
68d6692421
commit
14eff29e3a
|
@ -215,8 +215,6 @@ void CSystemEvents::ChangePluginFunc ( void )
|
||||||
{
|
{
|
||||||
_Notify->DisplayMessage(5,MSG_PLUGIN_NOT_INIT);
|
_Notify->DisplayMessage(5,MSG_PLUGIN_NOT_INIT);
|
||||||
_BaseSystem->m_EndEmulation = true;
|
_BaseSystem->m_EndEmulation = true;
|
||||||
} else {
|
|
||||||
//CC_Core::SetCurrentSystem(_N64System);
|
|
||||||
}
|
}
|
||||||
_Recompiler->ResetRecompCode();
|
_Recompiler->ResetRecompCode();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#include "..\\N64 Types.h"
|
#include "..\\N64 Types.h"
|
||||||
|
|
||||||
class CC_Core;
|
|
||||||
|
|
||||||
class CSystemTimer :
|
class CSystemTimer :
|
||||||
protected CGameSettings
|
protected CGameSettings
|
||||||
{
|
{
|
||||||
|
|
|
@ -108,7 +108,6 @@ private:
|
||||||
bool Probed;
|
bool Probed;
|
||||||
} FASTTLB;
|
} FASTTLB;
|
||||||
|
|
||||||
//friend CC_Core;
|
|
||||||
friend CDebugTlb; // enable debug window to read class
|
friend CDebugTlb; // enable debug window to read class
|
||||||
|
|
||||||
CTLB_CB * const m_CB;
|
CTLB_CB * const m_CB;
|
||||||
|
|
|
@ -871,12 +871,10 @@ void CN64System::UpdateSyncCPU (CN64System * const SecondCPU, DWORD const Cycles
|
||||||
if (CyclesToExecute < 0) { return; }
|
if (CyclesToExecute < 0) { return; }
|
||||||
|
|
||||||
SecondCPU->SetActiveSystem(true);
|
SecondCPU->SetActiveSystem(true);
|
||||||
//CC_Core::SetCurrentSystem(SecondCPU);
|
|
||||||
|
|
||||||
CInterpreterCPU::ExecuteOps(Cycles);
|
CInterpreterCPU::ExecuteOps(Cycles);
|
||||||
|
|
||||||
SetActiveSystem(true);
|
SetActiveSystem(true);
|
||||||
//CC_Core::SetCurrentSystem(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CN64System::SyncCPUPC (CN64System * const SecondCPU)
|
void CN64System::SyncCPUPC (CN64System * const SecondCPU)
|
||||||
|
|
|
@ -13,7 +13,6 @@ typedef std::map<DWORD, DWORD> FUNC_CALLS;
|
||||||
|
|
||||||
class CPlugins;
|
class CPlugins;
|
||||||
class CRSP_Plugin;
|
class CRSP_Plugin;
|
||||||
class CC_Core;
|
|
||||||
|
|
||||||
//#define TEST_SP_TRACKING //track the SP to make sure all ops pick it up fine
|
//#define TEST_SP_TRACKING //track the SP to make sure all ops pick it up fine
|
||||||
|
|
||||||
|
@ -79,7 +78,6 @@ private:
|
||||||
friend CControl_Plugin;
|
friend CControl_Plugin;
|
||||||
|
|
||||||
//Recompiler has access to manipulate and call functions
|
//Recompiler has access to manipulate and call functions
|
||||||
friend CC_Core;
|
|
||||||
friend CSystemTimer;
|
friend CSystemTimer;
|
||||||
|
|
||||||
//Used for loading and potentialy executing the CPU in its own thread.
|
//Used for loading and potentialy executing the CPU in its own thread.
|
||||||
|
|
Loading…
Reference in New Issue