From: havoc Date: Tue, 10 Sep 2002 23:04:07 +0000 (+0000) Subject: corrected an error message in .lights code X-Git-Tag: RELEASE_0_2_0_RC1~254 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9cdf3f8ff8114b719a96eb85eb20f3977ac86515;p=xonotic%2Fdarkplaces.git corrected an error message in .lights code git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2352 d7cf8633-e32d-0410-b094-e92efae38249 --- 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++;