mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-17 02:01:15 +00:00
Fix missing semicolon
This commit is contained in:
parent
602701d6dd
commit
f1b8e122a2
1 changed files with 1 additions and 1 deletions
|
@ -1455,7 +1455,7 @@ static void Command_Playdemo_f(void)
|
|||
// Internal if no extension, external if one exists
|
||||
// If external, convert the file name to a path in SRB2's home directory
|
||||
if (FIL_CheckExtension(name))
|
||||
G_DoPlayDemo(va("%s"PATHSEP"%s", srb2home, name))
|
||||
G_DoPlayDemo(va("%s"PATHSEP"%s", srb2home, name));
|
||||
else
|
||||
G_DoPlayDemo(name);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue