Re-enable spotlights on ATI cards again because the crash from 12.8 seems gone.

git-svn-id: https://svn.eduke32.com/eduke32@3381 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2013-01-06 18:56:50 +00:00
parent 51c5afaae6
commit 05161ea4d8

View file

@ -1478,13 +1478,13 @@ int16_t polymer_addlight(_prlight* light)
if (lighti == PR_MAXLIGHTS)
return (-1);
#if 0
// Spot lights disabled on ATI cards because they cause crashes with
// Catalyst 12.8 drivers.
// See: http://forums.duke4.net/topic/5723-hrp-polymer-crash/
if (pr_ati_fboworkaround && light->radius)
return (-1);
#endif
Bmemcpy(&prlights[lighti], light, sizeof(_prlight));
if (light->radius) {