aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-08-25 22:28:15 +0100
committergingerBill <bill@gingerbill.org>2021-08-25 22:28:15 +0100
commit98dd59e412314f089fc9558c5cf92a8a5df5213a (patch)
treedc97df182ec6bda8f92570b5be653d88b9b88ab1
parent7b2f6aaa1c38a28a467c7b208cb63601b5d0ee4d (diff)
Fix return value
-rw-r--r--vendor/OpenGL/helpers.odin1
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/OpenGL/helpers.odin b/vendor/OpenGL/helpers.odin
index 384a1e1dc..b86645bcc 100644
--- a/vendor/OpenGL/helpers.odin
+++ b/vendor/OpenGL/helpers.odin
@@ -128,6 +128,7 @@ compile_shader_from_source :: proc(shader_data: string, shader_type: Shader_Type
CompileShader(shader_id);
check_error(shader_id, shader_type, COMPILE_STATUS, GetShaderiv, GetShaderInfoLog) or_return;
+ ok = true;
return;
}