diff --git a/neo/renderer/tr_frontend_addlights.cpp b/neo/renderer/tr_frontend_addlights.cpp index 764e2732fe..726ee71111 100644 --- a/neo/renderer/tr_frontend_addlights.cpp +++ b/neo/renderer/tr_frontend_addlights.cpp @@ -302,13 +302,15 @@ static void R_AddSingleLight( viewLight_t* vLight ) } flod *= numLods; - lod = idMath::Ftoi( flod ); - if( lod < 0 ) + if( flod < 0 ) { - lod = 0; + flod = 0; } - else if( lod >= numLods ) + + lod = idMath::Ftoi( flod ); + + if( lod >= numLods ) { //lod = numLods - 1; } @@ -329,7 +331,7 @@ static void R_AddSingleLight( viewLight_t* vLight ) } // never give ultra quality for point lights - if( lod == 0 && light->parms.pointLight ) + if( lod == 0 && light->parms.pointLight && !light->parms.parallel ) { lod = 1; }