From: havoc Date: Fri, 28 Dec 2007 23:04:18 +0000 (+0000) Subject: fix Con_Print that should have been Con_Printf X-Git-Tag: xonotic-v0.1.0preview~2615 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=272c3a25856defea82694017a4ef0db80aaf9b76;p=xonotic%2Fdarkplaces.git fix Con_Print that should have been Con_Printf git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7879 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host.c b/host.c index 3ccb9963..1a3b4449 100644 --- a/host.c +++ b/host.c @@ -238,7 +238,7 @@ void Host_SaveConfig_f(void) f = FS_Open (file, "wb", false, false); if (!f) { - Con_Print("Couldn't write %s.\n", file); + Con_Printf("Couldn't write %s.\n", file); return; }