Added logic to refresh video display with last pass image data when inside debug loop.
This commit is contained in:
parent
a25a5c914c
commit
a59f1421b5
|
@ -20,6 +20,7 @@
|
|||
#include "../../debug.h"
|
||||
#include "../../driver.h"
|
||||
#include "../../version.h"
|
||||
#include "../../video.h"
|
||||
#include "../../movie.h"
|
||||
#include "../../palette.h"
|
||||
#include "../../fds.h"
|
||||
|
@ -1672,6 +1673,11 @@ static void winDebuggerLoopStep(void)
|
|||
gtk_main_iteration_do(FALSE);
|
||||
}
|
||||
|
||||
if ( XBackBuf )
|
||||
{
|
||||
BlitScreen(XBackBuf);
|
||||
}
|
||||
|
||||
if ( breakpoint_hit )
|
||||
{
|
||||
seekPC_AllDebugWindows();
|
||||
|
|
Loading…
Reference in New Issue