change window title

This commit is contained in:
2025-03-20 14:42:46 +01:00
parent 0c35c38ccd
commit b98e1aaade

View File

@@ -56,7 +56,7 @@ public class Window {
glfwWindowHint(GLFW_RESIZABLE, GLFW_TRUE); // the window will be resizable glfwWindowHint(GLFW_RESIZABLE, GLFW_TRUE); // the window will be resizable
// Create the window // Create the window
window = glfwCreateWindow(1000, 1000, "Chess4J", NULL, NULL); window = glfwCreateWindow(1000, 1000, "3DChess", NULL, NULL);
if (window == NULL) if (window == NULL)
throw new RuntimeException("Failed to create the GLFW window"); throw new RuntimeException("Failed to create the GLFW window");