{Project64] Clean up NotificationClass.cpp

This commit is contained in:
zilmar 2016-04-12 19:54:47 +10:00
parent 07c6db1cce
commit 94f71e21be
1 changed files with 11 additions and 11 deletions

View File

@ -8,9 +8,9 @@ CNotificationImp & Notify(void)
} }
CNotificationImp::CNotificationImp() : CNotificationImp::CNotificationImp() :
m_hWnd(NULL), m_hWnd(NULL),
m_gfxPlugin(NULL), m_gfxPlugin(NULL),
m_NextMsg(0) m_NextMsg(0)
{ {
_tzset(); _tzset();
} }
@ -250,18 +250,18 @@ void CNotificationImp::BreakPoint(const char * FileName, int LineNumber)
} }
else else
{ {
if (g_BaseSystem) if (g_BaseSystem)
{ {
g_BaseSystem->CloseCpu(); g_BaseSystem->CloseCpu();
} }
} }
} }
else else
{ {
DisplayError("Fatal Error: Stopping emulation"); DisplayError("Fatal Error: Stopping emulation");
if (g_BaseSystem) if (g_BaseSystem)
{ {
g_BaseSystem->CloseCpu(); g_BaseSystem->CloseCpu();
} }
} }
} }