Don't automatically resume emulation when debugger is enabled.

This commit is contained in:
Jean-Philip Desjardins 2019-05-12 10:02:50 -04:00
parent 872dd72e3d
commit 1ca4737414

View File

@ -479,7 +479,9 @@ void MainWindow::loadState(int stateSlot)
if(succeeded)
{
m_msgLabel->setText(QString("Loaded state from slot %1.").arg(stateSlot));
#ifndef DEBUGGER_INCLUDED
m_virtualMachine->Resume();
#endif
}
else
{