From f654d84f8d7d7ba73bb3a65d0b1d9a35fe038b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hatvani=20Tam=C3=A1s?= Date: Tue, 10 Mar 2026 10:20:06 +0100 Subject: [PATCH] new log message when init window position will not be set --- SakuraVNE/src/Application.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SakuraVNE/src/Application.cpp b/SakuraVNE/src/Application.cpp index d4fd533..6df328d 100644 --- a/SakuraVNE/src/Application.cpp +++ b/SakuraVNE/src/Application.cpp @@ -42,6 +42,10 @@ bool Application::Init() { } else { LOG_INFO("SDL window position set to the initial value: x {0}, y {1}", GetWindowData().pos_x, GetWindowData().pos_y); } + } else { + LOG_WARN("SDL window position not set. Will not attempt to set window position."); + } + LOG_INFO("Available renderer drivers:"); for (int i = 0; i < SDL_GetNumRenderDrivers(); i++) { LOG_INFO("{0}. {1}", i + 1, SDL_GetRenderDriver(i));