This commit is contained in:
2024-10-22 16:25:13 +02:00
parent a86f26f0f3
commit 58ad52e1cc
7 changed files with 27 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
namespace mlx
{
Window::Window(std::size_t w, std::size_t h, const std::string& title, bool hidden) : m_width(w), m_height(h)
Window::Window(std::size_t w, std::size_t h, const std::string& title, bool hidden) : m_name(title), m_width(w), m_height(h)
{
p_window = SDLManager::Get().CreateWindow(title, w, h, hidden, m_id);
}