Window title fix

This commit is contained in:
MihailRis
2023-12-04 21:20:50 +03:00
parent aedbc230bc
commit 20ff8f71bf
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ int Window::initialize(DisplaySettings& settings){
glfwWindowHint(GLFW_RESIZABLE, GL_TRUE);
glfwWindowHint(GLFW_SAMPLES, settings.samples);
window = glfwCreateWindow(width, height, settings.title, nullptr, nullptr);
window = glfwCreateWindow(width, height, settings.title.c_str(), nullptr, nullptr);
if (window == nullptr){
cerr << "Failed to create GLFW Window" << endl;
glfwTerminate();