From f5d60dc72a337aa544ec813494e267cc2afcf56e Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Sun, 4 Aug 2024 23:20:17 -0400 Subject: [PATCH] another log --- game/system/hid/display_manager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/game/system/hid/display_manager.cpp b/game/system/hid/display_manager.cpp index 903666987..3b2b80a44 100644 --- a/game/system/hid/display_manager.cpp +++ b/game/system/hid/display_manager.cpp @@ -62,6 +62,8 @@ void DisplayManager::initialize_window_position_from_settings() { sdl_util::log_error(fmt::format("unable to get display bounds for display id {}", m_display_settings.display_id)); } else { + lg::debug("[DISPLAY]: display bounds for {} is ({}, {}) | {}x{}", m_display_settings.display_id, + rect.x, rect.y, rect.w, rect.h); // Adjust the settings if they are out of bounds if (m_display_settings.window_xpos <= rect.x || m_display_settings.window_xpos + 50 >= rect.x + rect.w) {