From d5ec1ece19f33ec69f656f65b4f7df8d993ebaf1 Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 13 Sep 2025 11:45:51 -0400 Subject: [PATCH] Update window creation in TestEditor to support resizable windows - Modified the CreateWindow function call to include the SDL_WINDOW_RESIZABLE flag, allowing for dynamic window resizing during integration tests. --- test/test_editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_editor.cc b/test/test_editor.cc index 967d0de7..16cbdeb3 100644 --- a/test/test_editor.cc +++ b/test/test_editor.cc @@ -46,7 +46,7 @@ void TestEditor::RegisterTests(ImGuiTestEngine* engine) { int RunIntegrationTest() { yaze::core::Controller controller; yaze::core::Window window; - yaze::core::CreateWindow(&window); + yaze::core::CreateWindow(window, SDL_WINDOW_RESIZABLE); IMGUI_CHECKVERSION(); ImGui::CreateContext();