diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-23 05:45:51 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-23 05:45:51 -0400 |
| commit | f38b46f1107789f4b12e0555dc6126b295f69dea (patch) | |
| tree | 348898ca9b4604bc9164538daa41db9c598d41d7 | |
| parent | 4a5f72a329f317d191eab143e92bfd492390c6db (diff) | |
| download | fujinet-chat-f38b46f1107789f4b12e0555dc6126b295f69dea.tar.gz | |
Fix *derpage* in config.c.
| -rw-r--r-- | config/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.c b/config/config.c index 55e1e7a..c8f1a48 100644 --- a/config/config.c +++ b/config/config.c @@ -522,10 +522,10 @@ void main(void) { /* disable Break key. don't have to do it again in the client! */ POKE(0x10, PEEK(0x10) & 0x7f); - POKE(0xd20e, PEEK(0x01)); + POKE(0xd20e, PEEK(0x10)); /* loading1.xex left the original DL address at $fe */ - POKEW(0x0230, PEEKW(0xfe)); + if(PEEKW(0xfe)) POKEW(0x0230, PEEKW(0xfe)); set_default_config(); |
