new log message when init window position will not be set

This commit is contained in:
2026-03-10 10:20:06 +01:00
parent 5c7812a8b9
commit f654d84f8d

View File

@@ -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));