From 8351eec1ec0f0cb7560311f44b8f274bd6cfdf16 Mon Sep 17 00:00:00 2001 From: Adrian <78108584+AdrianCassar@users.noreply.github.com> Date: Mon, 2 Mar 2026 16:47:18 +0000 Subject: [PATCH] [APP] Fixed potential conflicting ImGUI ID in profile menu --- src/xenia/app/profile_dialogs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/app/profile_dialogs.cc b/src/xenia/app/profile_dialogs.cc index a62265f84..fbd3dd864 100644 --- a/src/xenia/app/profile_dialogs.cc +++ b/src/xenia/app/profile_dialogs.cc @@ -189,7 +189,7 @@ void ProfileConfigDialog::OnDraw(ImGuiIO& io) { ImGui::GetWindowPos().y); for (auto& [xuid, account] : *profiles) { - ImGui::PushID(static_cast(xuid)); + ImGui::PushID(fmt::format("{:016X}", xuid).c_str()); const uint8_t user_index = profile_manager->GetUserIndexAssignedToProfile(xuid);