aboutsummaryrefslogtreecommitdiff
path: root/platform/gl/gl.c
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-08 23:21:40 -0400
committeriamcheeseman <[email protected]>2026-05-08 23:21:40 -0400
commitef9e1dc496c41240de7921c25384e329f9414ab4 (patch)
tree32fc19417a52e2cc4d4aa22d24af43b8d821e5aa /platform/gl/gl.c
parent3011edddbe7917a3c16b8d8861383725e252cfe2 (diff)
fix opengl header order
Diffstat (limited to 'platform/gl/gl.c')
-rw-r--r--platform/gl/gl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/gl/gl.c b/platform/gl/gl.c
index 915c37c..4072949 100644
--- a/platform/gl/gl.c
+++ b/platform/gl/gl.c
@@ -2,8 +2,8 @@
// quality here is meh. Things could be organized more into functions, but as
// for now, it works fine, and isn't worth improving immediately.
-#include <GLFW/glfw3.h>
#include <glad/glad.h>
+#include <GLFW/glfw3.h>
#include "common.h"
#include "teensy.h"