summary refs log tree commit diff
path: root/src/shader.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/shader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader.h b/src/shader.h
index ee06930..6d53803 100644
--- a/src/shader.h
+++ b/src/shader.h
@@ -4,7 +4,7 @@
 #include <GL/glew.h>
 
 typedef struct {
-  GLuint program;
+  unsigned int program;
 } Shader;
 
 Shader *shader_create(const char *vertex_path, const char *fragment_path);