summaryrefslogtreecommitdiff
path: root/mm/2s2h/DeveloperTools/SaveEditor.cpp
diff options
context:
space:
mode:
authorenzu.ru <enzuru@users.noreply.github.com>2026-04-26 08:27:36 -0700
committerGitHub <noreply@github.com>2026-04-26 11:27:36 -0400
commit5c35f92ef9eea31449224ecf0e09fe08ca420f5b (patch)
tree8a3a55a79ad4283bd535aa81ce9816634de86c26 /mm/2s2h/DeveloperTools/SaveEditor.cpp
parent8c03f9c446da3d75b35221134d90545c670d53a2 (diff)
Format strings before printing (#1644)
* Format strings before printing * clang-format
Diffstat (limited to 'mm/2s2h/DeveloperTools/SaveEditor.cpp')
-rw-r--r--mm/2s2h/DeveloperTools/SaveEditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/2s2h/DeveloperTools/SaveEditor.cpp b/mm/2s2h/DeveloperTools/SaveEditor.cpp
index a29fa5d56..2cb226eca 100644
--- a/mm/2s2h/DeveloperTools/SaveEditor.cpp
+++ b/mm/2s2h/DeveloperTools/SaveEditor.cpp
@@ -2318,7 +2318,7 @@ void DrawRandoTab() {
ImGui::TableNextColumn();
ImGui::TextColored(randoSaveCheck.obtained ? UIWidgets::ColorValues.at(UIWidgets::Colors::Green)
: UIWidgets::ColorValues.at(UIWidgets::Colors::White),
- randoStaticCheck.name);
+ "%s", randoStaticCheck.name);
ImGui::TableNextColumn();
UIWidgets::ComboboxWithSearch((hiddenName + "reward").c_str(), &randoSaveCheck.randoItemId,
&randoItemIdComboboxMap, { .labelPosition = UIWidgets::LabelPosition::None });