From 9cdf3f8ff8114b719a96eb85eb20f3977ac86515 Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 10 Sep 2002 23:04:07 +0000 Subject: [PATCH] corrected an error message in .lights code git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2352 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 b9667414..85c0b0c4 100644 --- a/model_brush.c +++ b/model_brush.c @@ -647,7 +647,7 @@ void Mod_LoadLightList(void) if (a != 14) { Mem_Free(lightsstring); - Host_Error("invalid lights file, found %d parameters on line %i, should be 13 parameters (origin[0] origin[1] origin[2] falloff light[0] light[1] light[2] subtract spotdir[0] spotdir[1] spotdir[2] spotcone style)\n", a, n + 1); + Host_Error("invalid lights file, found %d parameters on line %i, should be 14 parameters (origin[0] origin[1] origin[2] falloff light[0] light[1] light[2] subtract spotdir[0] spotdir[1] spotdir[2] spotcone distancebias style)\n", a, n + 1); } s++; n++; -- 2.39.2