From 25c805be9989c0ce1bd671edcf4c775529f5fe42 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Mon, 20 Jan 2025 14:40:27 -0600 Subject: Externals / VideoCommon: update imgui to 1.91.7 and implot to v0.16; imgui changed types for ImTextureId, which was addressed by using an implicit cast --- Source/Core/VideoCommon/OnScreenDisplay.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/OnScreenDisplay.cpp') diff --git a/Source/Core/VideoCommon/OnScreenDisplay.cpp b/Source/Core/VideoCommon/OnScreenDisplay.cpp index cc7fa6e22b..6f42879c34 100644 --- a/Source/Core/VideoCommon/OnScreenDisplay.cpp +++ b/Source/Core/VideoCommon/OnScreenDisplay.cpp @@ -109,8 +109,8 @@ static float DrawMessage(int index, Message& msg, const ImVec2& position, int ti if (msg.texture) { - ImGui::Image(msg.texture.get(), ImVec2(static_cast(msg.icon->width), - static_cast(msg.icon->height))); + ImGui::Image(*msg.texture.get(), ImVec2(static_cast(msg.icon->width), + static_cast(msg.icon->height))); ImGui::SameLine(); } } -- cgit v1.2.3