Replace hand chams with non-flat ones

Credits to @oxiKKK
This commit is contained in:
8dcc 2023-07-26 17:25:50 +02:00
parent 083186b497
commit 7e46e74b9e
1 changed files with 5 additions and 3 deletions

View File

@ -100,9 +100,11 @@ void h_glColor4f(GLfloat r, GLfloat g, GLfloat b, GLfloat a) {
b = 0.27f;
break;
case HANDS:
r = 0.94f;
g = 0.66f;
b = 0.94f;
/* Multiply by original func parameters for non-flat chams.
* Credits: @oxiKKK */
r *= 0.94f;
g *= 0.66f;
b *= 0.94f;
break;
default:
case NONE: