From 589816de49acd8efa96373a6915dc9e39f896ea1 Mon Sep 17 00:00:00 2001 From: havoc Date: Wed, 13 Jun 2007 05:41:31 +0000 Subject: [PATCH] fix a warning's format string git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7407 d7cf8633-e32d-0410-b094-e92efae38249 --- model_brush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model_brush.c b/model_brush.c index 096c0ee4..ad1d484c 100644 --- a/model_brush.c +++ b/model_brush.c @@ -1435,7 +1435,7 @@ static void Mod_Q1BSP_LoadTextures(lump_t *l) } if ((mtwidth & 15) || (mtheight & 15)) - Con_DPrintf("%s: warning: texture \"%s\" in \"%s\" is not 16 aligned\n", loadmodel->name, dmiptex->name); + Con_DPrintf("%s: warning: texture \"%s\" is not 16 aligned\n", loadmodel->name, dmiptex->name); // LordHavoc: force all names to lowercase for (j = 0;name[j];j++) -- 2.39.2