Global Variable: Remove CMemoryLabel

This commit is contained in:
zilmar 2012-11-17 13:30:05 +11:00
parent bd84758450
commit 1bc60df9a1
3 changed files with 0 additions and 4 deletions

View File

@ -531,7 +531,6 @@ bool CN64System::SetActiveSystem( bool bActive )
g_TLB = &m_TLB;
g_Reg = &m_Reg;
g_Audio = &m_Audio;
//_Labels = NULL; //???
_SystemTimer = &m_SystemTimer;
_TransVaddr = &m_MMU_VM;
_SystemEvents = this;
@ -563,7 +562,6 @@ bool CN64System::SetActiveSystem( bool bActive )
g_TLB = NULL;
g_Reg = NULL;
g_Audio = NULL;
_Labels = NULL;
_SystemTimer = NULL;
_TransVaddr = NULL;
_SystemEvents = NULL;

View File

@ -11,7 +11,6 @@ CNotification * g_Notify = NULL;
CPlugins * g_Plugins = NULL;
CN64Rom * g_Rom = NULL; //The current rom that this system is executing.. it can only execute one file at the time
CAudio * g_Audio = NULL;
CMemoryLabel * _Labels = NULL;
CSystemTimer * _SystemTimer = NULL;
CTransVaddr * _TransVaddr = NULL;
CSystemEvents * _SystemEvents = NULL;

View File

@ -11,7 +11,6 @@ extern CRegisters * g_Reg; //Current Register Set attached to the g_MMU
extern CPlugins * g_Plugins;
extern CN64Rom * g_Rom; //The current rom that this system is executing.. it can only execute one file at the time
extern CAudio * g_Audio;
extern CMemoryLabel * _Labels;
extern CSystemTimer * _SystemTimer;
extern CTransVaddr * _TransVaddr;
extern CSystemEvents * _SystemEvents;