diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-21 03:00:07 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-21 03:00:07 -0400 |
| commit | 5c2d15d1f204b007e90390db4ccda0fbaf5c58fb (patch) | |
| tree | e46d405e2d12fd15107b57015be9584e8977c138 /config | |
| parent | 2f8babf83a0c3ed8d8b26fa9b13b540b6f54fd3f (diff) | |
| download | fujinet-chat-5c2d15d1f204b007e90390db4ccda0fbaf5c58fb.tar.gz | |
Disable Break key in both config and client.
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/config.c b/config/config.c index 3e47685..4e13290 100644 --- a/config/config.c +++ b/config/config.c @@ -516,6 +516,10 @@ void set_default_config(void) { void main(void) { char bad; + /* disable Break key. don't have to do it again in the client! */ + POKE(0x10, PEEK(0x10) & 0x7f); + POKE(0xd20e, PEEK(0x01)); + /* loading1.xex left the original DL address at $fe */ POKEW(0x0230, PEEKW(0xfe)); |
