about summary refs log tree commit diff stats
path: root/sandbox/004-programming-environment.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-05-13 17:21:47 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-05-13 17:37:27 -0700
commit05a22c024d0ffe3382f94ccacec6718cb10ef78f (patch)
treed0f7893d0b7a67ce64b5eeefb63e5fcf2694f86c /sandbox/004-programming-environment.mu
parentef6116cbaf9368e490bfdec1c6404396ac161026 (diff)
downloadmu-05a22c024d0ffe3382f94ccacec6718cb10ef78f.tar.gz
3856
Bugfix on commit 3853: clear `render-all-on-no-more-events` once you've
actually run the `render-all`.
Diffstat (limited to 'sandbox/004-programming-environment.mu')
-rw-r--r--sandbox/004-programming-environment.mu1
1 files changed, 1 insertions, 0 deletions
diff --git a/sandbox/004-programming-environment.mu b/sandbox/004-programming-environment.mu
index 917ea957..29db733b 100644
--- a/sandbox/004-programming-environment.mu
+++ b/sandbox/004-programming-environment.mu
@@ -88,6 +88,7 @@ def event-loop screen:&:screen, console:&:console, env:&:environment, resources:
       {
         break-if more-events?
         break-unless render-all-on-no-more-events?
+        render-all-on-no-more-events? <- copy 0/false
         screen <- render-all screen, env, render
       }
       +finish-event