mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-02-20 19:12:11 +00:00
Fix debugger resume
This commit is contained in:
parent
d455ac5223
commit
07da116640
1 changed files with 1 additions and 3 deletions
|
@ -693,11 +693,9 @@ void rvDebuggerServer::Resume ( void )
|
|||
return;
|
||||
}
|
||||
|
||||
mBreak = false;
|
||||
|
||||
// Start the game thread back up
|
||||
SDL_LockMutex( mGameThreadBreakLock );
|
||||
mBreak = true;
|
||||
mBreak = false;
|
||||
SDL_CondSignal( mGameThreadBreakCond);
|
||||
SDL_UnlockMutex( mGameThreadBreakLock );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue