From 16ec119f8d4083ba27ba90fe75fc8f51cee548d0 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Thu, 5 Oct 2023 17:06:20 +0700 Subject: [PATCH] Small changes --- game/.gitignore | 1 + game/.idea/.gitignore | 8 -------- game/.idea/misc.xml | 18 ------------------ game/.idea/vcs.xml | 6 ------ game/tenchu.c | 2 +- 5 files changed, 2 insertions(+), 33 deletions(-) delete mode 100644 game/.idea/.gitignore delete mode 100644 game/.idea/misc.xml delete mode 100644 game/.idea/vcs.xml diff --git a/game/.gitignore b/game/.gitignore index 8b2c6e3..77d983c 100644 --- a/game/.gitignore +++ b/game/.gitignore @@ -1,2 +1,3 @@ /opengl tenchu +/.idea diff --git a/game/.idea/.gitignore b/game/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/game/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/game/.idea/misc.xml b/game/.idea/misc.xml deleted file mode 100644 index 53624c9..0000000 --- a/game/.idea/misc.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/game/.idea/vcs.xml b/game/.idea/vcs.xml deleted file mode 100644 index 6c0b863..0000000 --- a/game/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/game/tenchu.c b/game/tenchu.c index d4ca1de..cc56d3d 100644 --- a/game/tenchu.c +++ b/game/tenchu.c @@ -69,7 +69,7 @@ int main(void) { glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); GLFWwindow* window = - checkPtr(glfwCreateWindow(SCREEN_WIDTH, SCREEN_HEIGHT, "Learn OpenGL", NULL, NULL), + checkPtr(glfwCreateWindow(SCREEN_WIDTH, SCREEN_HEIGHT, "2D Engine", NULL, NULL), "Error creating GLFW window"); if (window == NULL) glfwTerminate();