diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-25 06:11:11 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-25 06:11:11 -0400 |
| commit | dc292b54c8bea6ea5317ff334bd8c65248d94a6b (patch) | |
| tree | d6508165aaaba20a0bae2367de809baae767a8a6 /src/edbox.h | |
| parent | e52b749244b9b55673ee3ff6d2d9a54a27b64e32 (diff) | |
| download | fujinet-chat-dc292b54c8bea6ea5317ff334bd8c65248d94a6b.tar.gz | |
Save 426 bytes by making edbox_pos and edbox_len chars instead of ints. They never go above 239 anyway.
Diffstat (limited to 'src/edbox.h')
| -rw-r--r-- | src/edbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
