changeset 114:019909b7ab6e

Oops, g_dirty should've been boolean all the time.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 06 Jul 2018 18:44:19 +0300
parents f87c6577e696
children 653ce10184e5
files multipaint.pde
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/multipaint.pde	Fri Jul 06 18:42:31 2018 +0300
+++ b/multipaint.pde	Fri Jul 06 18:44:19 2018 +0300
@@ -22,9 +22,9 @@
 int g_active, g_tooltrigger, g_prevtool;
 int g_rband, g_rbang, g_boxreconstruct, g_charlimit;
 int g_animx, g_animy, g_animframes, g_animno, g_animtime, g_animspeed;
-int g_omag, g_bordh, g_bordv, g_keymacpos, g_dirty;
+int g_omag, g_bordh, g_bordv, g_keymacpos;
 
-boolean g_control = false, g_shift = false;
+boolean g_control = false, g_shift = false, g_dirty;
 
 String filename = "", sfilename = "", g_name, g_exportext = "",
     g_exportname = "", g_keymacro = "";