diff --git a/tests/in/glsl/931-constant-emitting.vert b/tests/in/glsl/931-constant-emitting.vert index 6844a7a7fa..b780eb7ac9 100644 --- a/tests/in/glsl/931-constant-emitting.vert +++ b/tests/in/glsl/931-constant-emitting.vert @@ -3,8 +3,8 @@ // FIX: #933 #version 450 -const float constant = 10.0; +const int constant = 10; float function() { - return constant; + return 0.0; }