diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-25 18:40:02 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-25 18:40:02 -0400 |
| commit | 5ad74801b74a69b2cb8dbe0c1a0e0b9a5d251eb2 (patch) | |
| tree | 500eb8524ecc106e46ce1ef4d2a0e5bf15406ff1 /font_dl.asm | |
| parent | 43aa98337bca5c7408417a60787f792d8fe700a0 (diff) | |
| download | fujinet-chat-5ad74801b74a69b2cb8dbe0c1a0e0b9a5d251eb2.tar.gz | |
Fix Start+E display (only 5 lines were shown, now 6); clear an extra byte in edbox_clear() in case page 6 wasn't empty at startup.
Diffstat (limited to 'font_dl.asm')
| -rw-r--r-- | font_dl.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/font_dl.asm b/font_dl.asm index 3cd43e5..a48699a 100644 --- a/font_dl.asm +++ b/font_dl.asm @@ -83,7 +83,8 @@ dl_status_lms .byte $70, $70, $70, $70, $70, $70, $70, $70 .byte $42 .word $0600 ; edit_box from addrs.c - .byte $02, $02, $02, $02 + .byte $02, $02, $02, $02, $02 + .byte $00 .byte $42 .word $a798 ; status_box from addrs.c .byte $06 ; GR.1 |
