From dc292b54c8bea6ea5317ff334bd8c65248d94a6b Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 25 Mar 2026 06:11:11 -0400 Subject: Save 426 bytes by making edbox_pos and edbox_len chars instead of ints. They never go above 239 anyway. --- src/edbox.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/edbox.h') diff --git a/src/edbox.h b/src/edbox.h index a469eaa..d35723e 100644 --- a/src/edbox.h +++ b/src/edbox.h @@ -5,7 +5,7 @@ #define EDBOX_SIZE 240 extern char edbox_visible; -extern u16 edbox_len; +extern char edbox_len; /* clear the contents of the edit box (whether it's visible or not) */ void edbox_clear(void); -- cgit v1.2.3