From d927b2eecb7266d6e3a6a987f9445a01b87bac8e Mon Sep 17 00:00:00 2001
From: sam <multisniperism@gmail.com>
Date: Sun, 5 May 2024 14:29:37 +1200
Subject: [PATCH] add example name to window title

---
 examples/test.c     | 2 +-
 examples/textures.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/test.c b/examples/test.c
index 2a521e9..272eeba 100644
--- a/examples/test.c
+++ b/examples/test.c
@@ -1,7 +1,7 @@
 #include <gearlib.h>
 
 int main() {
-    Window window = create_window(800, 600, "gearlib");
+    Window window = create_window(800, 600, "test");
     glfwSwapInterval(0); // fps unlock
     enable_debugging();
     setup_textures();
diff --git a/examples/textures.c b/examples/textures.c
index 6d70d9e..e8b75a0 100644
--- a/examples/textures.c
+++ b/examples/textures.c
@@ -1,7 +1,7 @@
 #include <gearlib.h>
 
 int main() {
-    Window window = create_window(800, 600, "gearlib");
+    Window window = create_window(800, 600, "textures");
     glfwSwapInterval(0); // fps unlock
     setup_textures();