diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-09 04:46:17 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-07-09 04:46:17 -0400 |
commit | da5a6e996d1dd0bdded1c8da13b68d5da43865bc (patch) | |
tree | 1f4ab039b62407ce324b70ae231f2c6b8a2df662 | |
parent | 219d82dd1c976f11eb6d554c635f8e886722a387 (diff) | |
download | bw-atari8-tools-da5a6e996d1dd0bdded1c8da13b68d5da43865bc.tar.gz |
whichbas: commentary.
-rw-r--r-- | whichbas.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -337,6 +337,9 @@ CALLBACK(handle_cmd) { break; case 0x50: /* EXEC (1 arg, *must* be variable) or PMGRAPHICS (1 num arg, may be const) */ /* PARTIAL: PMGRAPHICS VAR won't be detected. but this usage is rare. */ + /* This check is actually redundant, because EXEC requires Turbo's + label type (high bits in var name table set to 1), which we already + detected in check_variables(). */ if(!has_var_arg) { remove_type(BT_TURBO); } |