Fix missing menu button and character in The Legend Of Heroes - Trails In The Sky
This commit is contained in:
parent
8b2a410846
commit
b64edadb1b
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ void Lighter::Light(float colorOut0[4], float colorOut1[4], const float colorIn[
|
|||
}
|
||||
|
||||
Color4 lightDiff(gstate_c.lightColor[1][l], 0.0f);
|
||||
Color4 diff = (lightDiff * *diffuse) * (dot * lightScale);
|
||||
Color4 diff = (lightDiff * *diffuse) * (max(dot, 0.0f) * lightScale);
|
||||
|
||||
// Real PSP specular
|
||||
Vec3 toViewer(0,0,1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue