summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/OnScreenUI.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2024-06-21 20:01:44 +0200
committerGitHub <noreply@github.com>2024-06-21 20:01:44 +0200
commit5728ebf7ad303594132d6361fe99c8de782bf72e (patch)
treea628a55284970d9131feb6cedcba59122aad59f2 /Source/Core/VideoCommon/OnScreenUI.cpp
parentd29a1fdcd340f1db359b306bead4ba3d075500e9 (diff)
parentb8381bfa7cc6e4f7764bf193a8b824533038c4bc (diff)
Merge pull request #12867 from AdmiralCurtiss/uicommon-dependency
CMake dependency fixes
Diffstat (limited to 'Source/Core/VideoCommon/OnScreenUI.cpp')
-rw-r--r--Source/Core/VideoCommon/OnScreenUI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp
index c247b139bf..c755fcbfe7 100644
--- a/Source/Core/VideoCommon/OnScreenUI.cpp
+++ b/Source/Core/VideoCommon/OnScreenUI.cpp
@@ -393,7 +393,7 @@ void OnScreenUI::DrawChallengesAndLeaderboards()
ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoFocusOnAppearing))
{
for (const auto& value : leaderboard_progress)
- ImGui::Text(value.data());
+ ImGui::TextUnformatted(value.c_str());
}
ImGui::End();
}