Add missing newline in message printed by --help cmdline arg

This commit is contained in:
Daniel Gibson 2018-09-03 04:31:14 +02:00
parent f15d4181eb
commit 67bb061741

View file

@ -220,7 +220,7 @@ static qboolean checkForHelp(int argc, char **argv)
printf(" 'gl3' (the shiny new OpenGL 3.2 renderer),\n");
printf(" 'soft' (the experimental software renderer)\n");
#endif // DEDICATED_ONLY
printf("\nSee https://github.com/yquake2/yquake2/blob/master/stuff/cvarlist.md\nfor some more cvars");
printf("\nSee https://github.com/yquake2/yquake2/blob/master/stuff/cvarlist.md\nfor some more cvars\n");
return true;
}