From f1b8e122a20b61289844013786a68dfddd349330 Mon Sep 17 00:00:00 2001
From: Monster Iestyn <iestynjealous@ntlworld.com>
Date: Fri, 12 Jan 2018 20:05:09 +0000
Subject: [PATCH] Fix missing semicolon

---
 src/d_netcmd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/d_netcmd.c b/src/d_netcmd.c
index 0d174548c4..82d2a33a86 100644
--- a/src/d_netcmd.c
+++ b/src/d_netcmd.c
@@ -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);
 }
-- 
GitLab