diff --git a/src/platform/glfwMain.cpp b/src/platform/glfwMain.cpp index ff3b505..257008b 100644 --- a/src/platform/glfwMain.cpp +++ b/src/platform/glfwMain.cpp @@ -4,6 +4,7 @@ // add enet in the target_link_libraries list at the end //#include +#define WINDOW_NAME "geam" #include #include @@ -438,7 +439,7 @@ int main() int w = 500; int h = 500; - wind = glfwCreateWindow(w, h, "geam", nullptr, nullptr); + wind = glfwCreateWindow(w, h, WINDOW_NAME, nullptr, nullptr); glfwMakeContextCurrent(wind); glfwSwapInterval(1); @@ -703,4 +704,4 @@ int main() //if you want the console to stay after closing the window //std::cin.clear(); //std::cin.get(); -} \ No newline at end of file +}