mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
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
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user