From 9fab91015cb9a21d4b14226feccfefb05024e39c Mon Sep 17 00:00:00 2001 From: Llennpie <44985633+Llennpie@users.noreply.github.com> Date: Mon, 11 Oct 2021 12:14:09 -0400 Subject: [PATCH] Fix a small button name bug --- src/moon/imgui/imgui_impl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/moon/imgui/imgui_impl.cpp b/src/moon/imgui/imgui_impl.cpp index 506592d0..a6a7fad8 100644 --- a/src/moon/imgui/imgui_impl.cpp +++ b/src/moon/imgui/imgui_impl.cpp @@ -464,7 +464,7 @@ namespace MoonInternal { } ImGui::EndCombo(); } - if (ImGui::Button("Load")) { + if (ImGui::Button("Set Eyes")) { custom_eye_name = "eyes/" + eye_array[current_eye_id]; saturn_eye_swap(); } @@ -491,7 +491,7 @@ namespace MoonInternal { } ImGui::EndCombo(); } - if (ImGui::Button("Load")) { + if (ImGui::Button("Load CC")) { load_cc_file(cc_array[current_cc_id]); uiHatColor = ImVec4(float(defaultColorHatRLight) / 255.0f, float(defaultColorHatGLight) / 255.0f, float(defaultColorHatBLight) / 255.0f, 255.0f / 255.0f); @@ -543,7 +543,7 @@ namespace MoonInternal { ImGui::Dummy(ImVec2(0, 5)); - if (ImGui::Button("Load")) { + if (ImGui::Button("Apply to Game")) { apply_cc_from_editor(); }