Fix shader build error

Missed in a7c338c380
This commit is contained in:
Germano Cavalcante 2020-03-10 10:39:01 -03:00
parent 2bf4c74130
commit 89cff6537d
Notes: blender-bot 2023-02-14 09:02:41 +01:00
Referenced by issue #74630, Crash when attempting to add a new material slot
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ void main()
}
else {
color = vec4(1.0, 0.0, 1.0, 1.0);
color = vec3(1.0, 0.0, 1.0);
}
fragColor = vec4(color, 1.0);