From 1b00b4e3d87e3cd3da90d35bf52741e50f66a3b0 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 13 Jun 2024 21:46:07 -0400 Subject: [PATCH] OSD messages display horizontally OSD messages with an icon and text will display the text to the right of the icon instead of below it. --- Source/Core/VideoCommon/OnScreenDisplay.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/VideoCommon/OnScreenDisplay.cpp b/Source/Core/VideoCommon/OnScreenDisplay.cpp index c24fee6538..5d9d90b95b 100644 --- a/Source/Core/VideoCommon/OnScreenDisplay.cpp +++ b/Source/Core/VideoCommon/OnScreenDisplay.cpp @@ -111,6 +111,7 @@ static float DrawMessage(int index, Message& msg, const ImVec2& position, int ti { ImGui::Image(msg.texture.get(), ImVec2(static_cast(msg.icon->width), static_cast(msg.icon->height))); + ImGui::SameLine(); } }