From 263e3b6537d74f785d271fdaaa142415d73cd5a4 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 11 Dec 2008 00:01:08 -0500 Subject: [PATCH] Fixed wrong value for allow_glsl on non-Mac platforms. --- mojoshader_opengl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mojoshader_opengl.c b/mojoshader_opengl.c index d3b65d20..8a449684 100644 --- a/mojoshader_opengl.c +++ b/mojoshader_opengl.c @@ -796,7 +796,7 @@ static int valid_profile(const char *profile) #if PLATFORM_MACOSX const int allow_glsl = macosx_version_atleast(10, 5, 0); #else - const int allow_glsl = 0; + const int allow_glsl = 1; #endif if (!ctx->have_base_opengl)