From b6114241eee666060cc7529d555eedde3114d98d Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 25 Mar 2026 04:22:16 -0400 Subject: Save 19 bytes by making a couple of ints into chars. --- src/edbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/edbox.c') diff --git a/src/edbox.c b/src/edbox.c index 4adba8d..ad04140 100644 --- a/src/edbox.c +++ b/src/edbox.c @@ -11,9 +11,9 @@ extern void __fastcall__ bell(void); char *old_edbox[EDBOX_SIZE]; static u16 old_len; -static int typeover; +static char typeover; -int edbox_visible = 0; +char edbox_visible = 0; static u16 edbox_pos; /* range 0 to EDBOX_SIZE - 1 */ u16 edbox_len; /* idem */ -- cgit v1.2.3