1
0
Fork 0

DBG: Remove print for "Program is already running"

fixes #528
This commit is contained in:
Nukem 2016-02-15 19:18:34 -05:00
parent 2b03693bf6
commit a6027b6136
1 changed files with 2 additions and 3 deletions

View File

@ -124,11 +124,10 @@ CMDRESULT cbDebugStop(int argc, char* argv[])
CMDRESULT cbDebugRun(int argc, char* argv[])
{
// Don't "run" twice if the program is already running
if(dbgisrunning())
{
dputs("Program is already running");
return STATUS_ERROR;
}
GuiSetDebugState(running);
unlock(WAITID_RUN);
PLUG_CB_RESUMEDEBUG callbackInfo;