This commit is contained in:
Kbz-8
2024-10-22 16:25:13 +02:00
parent aa26e528c4
commit cfb41b7b27
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);
}