diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-07 16:46:50 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-07-07 16:46:50 -0400 |
commit | fd0a11afe23e34c223420009467c3ced750416d5 (patch) | |
tree | c5d97e4c197ff99a604f823b2f0dc93700dcab36 | |
parent | 7aaf2ab9ae5325569907657f82e4eb30fa83d97b (diff) | |
download | bw-atari8-tools-fd0a11afe23e34c223420009467c3ced750416d5.tar.gz |
whichbas: fix bug in $PUT/BLOAD logic.
-rw-r--r-- | whichbas.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -372,7 +372,7 @@ CALLBACK(handle_end_stmt) { if(comma_count) { /* multiple args */ remove_type(BT_BXL_BXE); - } else if(program[last_cmd + 1] == OP_STRCONST) { + } else if(program[last_cmd_pos + 1] == OP_STRCONST) { /* one arg, string const. XXX: check var type */ remove_type(BT_TURBO); } |