summary refs log tree commit diff
path: root/bin/gfxx.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-02-13 13:21:16 -0500
committerJune McEnroe <june@causal.agency>2018-02-13 13:21:16 -0500
commitc8b987cace21acd0ae5c70e4c8df7aaba4a1010c (patch)
tree3a02c630768bda927000d863b26dd73698ff1a73 /bin/gfxx.c
parentAdd PNG stream splitter (diff)
downloadsrc-c8b987cace21acd0ae5c70e4c8df7aaba4a1010c.tar.gz
src-c8b987cace21acd0ae5c70e4c8df7aaba4a1010c.zip
Unset dump in gfxx draw
Otherwise hitting 'x' then resizing would cause dumps.
Diffstat (limited to 'bin/gfxx.c')
-rw-r--r--bin/gfxx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gfxx.c b/bin/gfxx.c
index 12d3db2c..b76eeae4 100644
--- a/bin/gfxx.c
+++ b/bin/gfxx.c
@@ -364,6 +364,7 @@ void draw(uint32_t *buf, size_t bufWidth, size_t bufHeight) {
         drawBits(&it);
     }
     if (dump) pngEncode(buf, bufWidth, bufHeight);
+    dump = false;
 }
 
 static void palSample(void) {
@@ -408,7 +409,6 @@ static void setPreset(void) {
 bool input(char in) {
     size_t pixel = (BITS_TOTAL + 7) / 8;
     size_t row = width * pixel;
-    dump = false;
     switch (in) {
         case 'q': return false;
         break; case 'x': dump = true;