From 685fb55b431ed973186a4ef1eb4d33168243ced3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hatvani=20Tam=C3=A1s?= Date: Thu, 16 Apr 2026 15:34:09 +0200 Subject: [PATCH] fixed: uninitalized m_Flags in window made the application window not appear --- SakuraCore/src/Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SakuraCore/src/Window.cpp b/SakuraCore/src/Window.cpp index 1304668..2fed83b 100644 --- a/SakuraCore/src/Window.cpp +++ b/SakuraCore/src/Window.cpp @@ -8,7 +8,7 @@ #include namespace SakuraVNE { -Window::Window(const WindowData &data) : m_Data(data) {} +Window::Window(const WindowData &data) : m_Data(data), m_Flags(0) {} Window::~Window() { Destroy(); } bool Window::Create(const SDL_WindowFlags flags) {