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;
|
continue;
|
||||||
} else if (*cp == 'r' || *cp == 'l') {
|
} else if (*cp == 'r' || *cp == 'l') {
|
||||||
for (bp = cp + 1; *bp && !isspace(bp); bp++) ;
|
for (bp = cp + 1; *bp && !isspace(*bp); bp++) ;
|
||||||
for (; *bp && isspace(bp); bp++) ;
|
for (; *bp && isspace(*bp); bp++) ;
|
||||||
if (*bp)
|
if (*bp)
|
||||||
player->argp[1] = bp;
|
player->argp[1] = bp;
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue