removed mention of CC_Core

This commit is contained in:
zilmar 2012-10-24 22:55:51 +11:00
parent 68d6692421
commit 14eff29e3a
5 changed files with 0 additions and 9 deletions

View File

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

View File

@ -1,7 +1,5 @@
#include "..\\N64 Types.h" #include "..\\N64 Types.h"
class CC_Core;
class CSystemTimer : class CSystemTimer :
protected CGameSettings protected CGameSettings
{ {

View File

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

View File

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

View File

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