]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/menu/xonotic/demolist.c
Fix cases of if not
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / demolist.c
index f04fde83d8b1f7fd415a3d7b709e930b0ebb956a..f2e209ca4d2b38190cdc64ec1f382f4756e4569d 100644 (file)
@@ -192,7 +192,7 @@ void XonoticDemoList_timeDemo(entity me)
 
 void DemoConfirm_ListClick_Check_Gamestatus(entity me)
 {
-       if not(gamestatus & (GAME_CONNECTED | GAME_ISSERVER)) // we're not in a match, lets watch the demo
+       if(!(gamestatus & (GAME_CONNECTED | GAME_ISSERVER))) // we're not in a match, lets watch the demo
        {
                me.startDemo(me);
        }