mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
Fixed: Valgrind warnings
This commit is contained in:
parent
0d4f6da330
commit
e0da8b7f56
1 changed files with 1 additions and 2 deletions
|
@ -69,7 +69,6 @@ CRenderTrav::CRenderTrav()
|
|||
_CurrentPassOpaque = true;
|
||||
|
||||
_CacheLightContribution= NULL;
|
||||
_LastLocalAttenuation= false;
|
||||
|
||||
// Default light Setup.
|
||||
LightingSystemEnabled= false;
|
||||
|
@ -624,7 +623,7 @@ void CRenderTrav::changeLightSetup(CLightContribution *lightContribution, bool
|
|||
uint i;
|
||||
|
||||
// if same lightContribution, no-op.
|
||||
if(_CacheLightContribution == lightContribution && _LastLocalAttenuation == useLocalAttenuation)
|
||||
if (_CacheLightContribution == lightContribution && (lightContribution == NULL || _LastLocalAttenuation == useLocalAttenuation))
|
||||
return;
|
||||
// else, must setup the lights into driver.
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue