mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
if ... if -> if ... else if
This commit is contained in:
parent
011b16144e
commit
306d6db39b
1 changed files with 1 additions and 2 deletions
|
@ -230,8 +230,7 @@ Cbuf_Execute_Sets (void)
|
|||
if (strnequal (line, "set", 3) && isspace ((int) line[3])) {
|
||||
// Con_DPrintf ("+%s\n",line);
|
||||
Cmd_ExecuteString (line, src_command);
|
||||
}
|
||||
if (strnequal (line, "setrom", 6) && isspace ((int) line[6])) {
|
||||
} else if (strnequal (line, "setrom", 6) && isspace ((int) line[6])) {
|
||||
// Con_DPrintf ("+%s\n",line);
|
||||
Cmd_ExecuteString (line, src_command);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue