summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Framebuffer.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Framebuffer.hpp b/src/Framebuffer.hpp
index 6e0d33e..f5c102d 100644
--- a/src/Framebuffer.hpp
+++ b/src/Framebuffer.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include <gl/glew.h>
+#include <GL/glew.h>
class Framebuffer {
unsigned int width, height;
@@ -26,4 +26,4 @@ public:
static Framebuffer &GetDefault();
void Clear(bool color = true, bool depth = true, bool stencil = true);
-}; \ No newline at end of file
+};