Fix POLYMER=0 warnings introduced in r5496.

git-svn-id: https://svn.eduke32.com/eduke32@5516 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2016-01-08 01:32:44 +00:00
parent 855e9117ff
commit d5b22a714f
1 changed files with 3 additions and 0 deletions

View File

@ -852,6 +852,7 @@ void G_AddGameLight(int32_t radius, int32_t srcsprite, int32_t zoffset, int32_t
UNREFERENCED_PARAMETER(range);
UNREFERENCED_PARAMETER(color);
UNREFERENCED_PARAMETER(priority);
UNREFERENCED_PARAMETER(smoothratio);
#endif
}
@ -8335,6 +8336,8 @@ void G_RefreshLights(int32_t smoothratio)
}
} while (k < MAXSTATUS);
}
#else
UNREFERENCED_PARAMETER(smoothratio);
#endif
}