summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/OnScreenDisplay.cpp
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2025-01-28 20:57:28 -0500
committerGitHub <noreply@github.com>2025-01-28 20:57:28 -0500
commite16e3f9a610138bbb313e0b7e52d371f50a34f17 (patch)
tree59f1a8b07bed6f348ad84108d321c99b1e1bbde5 /Source/Core/VideoCommon/OnScreenDisplay.cpp
parent3f79aa23b46f0e6cee2292f420be18971f60b3ef (diff)
parent25c805be9989c0ce1bd671edcf4c775529f5fe42 (diff)
Merge pull request #13291 from iwubcode/imgui_1_91_7
Externals / VideoCommon: update imgui to 1.91.7 and implot to v0.16
Diffstat (limited to 'Source/Core/VideoCommon/OnScreenDisplay.cpp')
-rw-r--r--Source/Core/VideoCommon/OnScreenDisplay.cpp4
1 files changed, 2 insertions, 2 deletions
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<float>(msg.icon->width),
- static_cast<float>(msg.icon->height)));
+ ImGui::Image(*msg.texture.get(), ImVec2(static_cast<float>(msg.icon->width),
+ static_cast<float>(msg.icon->height)));
ImGui::SameLine();
}
}