From 17f9dc7901e8468b3fbd7019493d264060900a92 Mon Sep 17 00:00:00 2001 From: Panos Karabelas Date: Sat, 4 Jan 2025 19:25:30 +0000 Subject: [PATCH] [window] replaced hardcoded window name with the actual name variable used in all other places --- runtime/Core/Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/Core/Window.cpp b/runtime/Core/Window.cpp index 72fccba1a..9eb508d79 100644 --- a/runtime/Core/Window.cpp +++ b/runtime/Core/Window.cpp @@ -115,7 +115,7 @@ namespace Spartan } // create window - m_title = "Spartan " + to_string(sp_info::version_major) + "." + to_string(sp_info::version_minor) + "." + to_string(sp_info::version_revision); + m_title = string(sp_info::name) + " " + to_string(sp_info::version_major) + "." + to_string(sp_info::version_minor) + "." + to_string(sp_info::version_revision); window = SDL_CreateWindow( m_title.c_str(), // window title 0, // initial x position