diff options
author | B. Watson <urchlay@slackware.uk> | 2025-03-26 23:24:38 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-03-26 23:24:43 -0400 |
commit | 62d25771c87fbafdeca779ef3b4f0dc422d82670 (patch) | |
tree | 1f53e914daa7cb33b52eb326d9fa5a18a0726602 | |
parent | fb8a212f8c35b8c8164d5818776352b0d172600d (diff) | |
download | bw-atari8-tools-62d25771c87fbafdeca779ef3b4f0dc422d82670.tar.gz |
listbas: fix typo for OP_EOL.
-rw-r--r-- | listbas.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -952,7 +952,7 @@ CALLBACK(print_op) { return; case OP_EOL: /* in Integer BASIC, this token is TO */ - if((bas_type != B_INT_D) && (bas_type != B_INT_D)) return; + if((bas_type != B_INT_C) && (bas_type != B_INT_D)) return; break; case 0x13: /* in Integer BASIC, this is the real end-of-line token */ |