diff options
Diffstat (limited to 'ldmicro/simulate.cpp')
-rw-r--r-- | ldmicro/simulate.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ldmicro/simulate.cpp b/ldmicro/simulate.cpp index 4a3475a..2d9be0b 100644 --- a/ldmicro/simulate.cpp +++ b/ldmicro/simulate.cpp @@ -694,7 +694,7 @@ void SimulateOneCycle(BOOL forceRefresh) // event loop, and there is risk that we would go recursive. So let // us fix that. (Note that there are no concurrency issues; we really // would get called recursively, not just reentrantly.) -/* static BOOL Simulating = FALSE; + static BOOL Simulating = FALSE; if(Simulating) return; Simulating = TRUE; @@ -713,14 +713,14 @@ void SimulateOneCycle(BOOL forceRefresh) if(NeedRedraw || SimulateRedrawAfterNextCycle || forceRefresh) { InvalidateRect(DrawWindow, NULL, FALSE); RefreshControlsToSettings(); - gtk_widget_queue_draw(DrawWindow); + // gtk_widget_queue_draw(DrawWindow); // ListView_RedrawItems(IoList, 0, Prog.io.count - 1); } SimulateRedrawAfterNextCycle = FALSE; if(NeedRedraw) SimulateRedrawAfterNextCycle = TRUE; - Simulating = FALSE;*/ + Simulating = FALSE; } //----------------------------------------------------------------------------- |