Kaydet (Commit) 635bca5f authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS ooo20031110 (1.16.438); FILE MERGED

2003/12/01 14:31:26 mh 1.16.438.3: RESYNC: (1.16-1.18); FILE MERGED
2003/11/11 12:47:06 waratah 1.16.438.2: #i22301# Correct for scoping rules
2003/11/06 22:33:23 waratah 1.16.438.1: #i21906# add const to reference cast, required by C++ standard
üst 02aa4dd8
......@@ -2,9 +2,9 @@
*
* $RCSfile: scene3d.cxx,v $
*
* $Revision: 1.18 $
* $Revision: 1.19 $
*
* last change: $Author: rt $ $Date: 2003-11-24 16:37:52 $
* last change: $Author: rt $ $Date: 2003-12-01 18:12:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -1369,7 +1369,7 @@ void E3dScene::FillLightGroup()
// ambientes licht, auf globales aufaddieren
B3dColor aCol(pLight->GetColor().GetColor());
aCol *= pLight->GetIntensity();
aCol += (B3dColor &)aLightGroup.GetGlobalAmbientLight();
aCol += (const B3dColor &)aLightGroup.GetGlobalAmbientLight();
aLightGroup.SetGlobalAmbientLight(aCol);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment