Fix the previous revision.
This commit is contained in:
parent
ba11aaaa36
commit
9055031b7f
1 changed files with 2 additions and 2 deletions
|
@ -140,8 +140,8 @@ march(void)
|
|||
}
|
||||
continue;
|
||||
} else if (*cp == 'r' || *cp == 'l') {
|
||||
for (bp = cp + 1; *bp && !isspace(bp); bp++) ;
|
||||
for (; *bp && isspace(bp); bp++) ;
|
||||
for (bp = cp + 1; *bp && !isspace(*bp); bp++) ;
|
||||
for (; *bp && isspace(*bp); bp++) ;
|
||||
if (*bp)
|
||||
player->argp[1] = bp;
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue