fix(paper): remove type suffix on constant literal in vertex data

OpenGL does not allow type suffix 'f' on constant literals in versions below 120
Some compilers like nvidia's appear to be strict about this.
1 files changed, 1 insertions(+), 1 deletions(-)

M src/paper.c
M src/paper.c +1 -1
@@ 329,7 329,7 @@ void paper_init(char* _monitor, char* fr
 
 		"void main() {"
 		"	texCoords = texIn;"
-		"	gl_Position = vec4(datIn, 0.0f, 1.0f);"
+		"	gl_Position = vec4(datIn, 0.0, 1.0);"
 		"}"
 	};