mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-26 01:40:24 +00:00
Fix missing menu button and character in The Legend Of Heroes - Trails In The Sky
This commit is contained in:
parent
8b2a410846
commit
b64edadb1b
@ -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…
Reference in New Issue
Block a user