Replace spaces to tab for StopEmulation func

This commit is contained in:
RadWolfie 2018-07-05 10:44:37 -05:00
parent ca64404bb3
commit eaae63ad94
1 changed files with 3 additions and 3 deletions

View File

@ -2429,14 +2429,14 @@ void WndMain::StartEmulation(HWND hwndParent, DebuggerState LocalDebuggerState /
// stop emulation
void WndMain::StopEmulation()
{
m_bIsStarted = false;
if (m_hwndChild != NULL) {
m_bIsStarted = false;
if (m_hwndChild != NULL) {
if (IsWindow(m_hwndChild)) {
SendMessage(m_hwndChild, WM_CLOSE, 0, 0);
}
m_hwndChild = NULL;
}
}
UpdateCaption();
RefreshMenus();