diff options
author | B. Watson <urchlay@slackware.uk> | 2024-05-31 01:51:31 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-05-31 01:51:31 -0400 |
commit | 4fed70d72e1c085057fb2c9f92acc806306ca560 (patch) | |
tree | a1d85f716d560ad2896029f68c8df7bd61932912 | |
parent | b74453209ad4d7d36fa686c98f928698904e44ab (diff) | |
download | bw-atari8-tools-4fed70d72e1c085057fb2c9f92acc806306ca560.tar.gz |
unprotbas: tweak error msg.
-rw-r--r-- | unprotbas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unprotbas.c b/unprotbas.c index 7dc183a..05a5f6e 100644 --- a/unprotbas.c +++ b/unprotbas.c @@ -827,7 +827,7 @@ void parse_args(int argc, char **argv) { if(readmap && keepvars) die("-r and -n are mutually exclusive (maybe you want -w?)"); if(protect_code || protect_vars) { if(checkonly || keepvars || forcevars || readmap || writemap || !keepgarbage) - die("-p, -pc, -pv options can't be combined with other options except -x, -v"); + die("-p, -pc, -pv options can only be combined with -v, -x, -s"); } if(xopt_used && !protect_vars) die("-x option requires -p or -pv"); |