diff --git a/Source/Project64/N64 System/N64 Class.cpp b/Source/Project64/N64 System/N64 Class.cpp index 0218a72f4..646f7f468 100644 --- a/Source/Project64/N64 System/N64 Class.cpp +++ b/Source/Project64/N64 System/N64 Class.cpp @@ -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; diff --git a/Source/Project64/N64 System/System Globals.cpp b/Source/Project64/N64 System/System Globals.cpp index dc57d63f8..e29e473c8 100644 --- a/Source/Project64/N64 System/System Globals.cpp +++ b/Source/Project64/N64 System/System Globals.cpp @@ -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; diff --git a/Source/Project64/N64 System/System Globals.h b/Source/Project64/N64 System/System Globals.h index 382332a41..f53d23f3a 100644 --- a/Source/Project64/N64 System/System Globals.h +++ b/Source/Project64/N64 System/System Globals.h @@ -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;