From 42f6cfe66b5f8acdb438587c3c77b7a3c9f4141f Mon Sep 17 00:00:00 2001 From: Adam Bird Date: Sun, 15 Oct 2023 18:25:52 -0400 Subject: [PATCH] add save editor field for current b button item (#3262) --- soh/soh/Enhancements/debugger/debugSaveEditor.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/soh/soh/Enhancements/debugger/debugSaveEditor.cpp b/soh/soh/Enhancements/debugger/debugSaveEditor.cpp index 9a8cc2682..cb16a9915 100644 --- a/soh/soh/Enhancements/debugger/debugSaveEditor.cpp +++ b/soh/soh/Enhancements/debugger/debugSaveEditor.cpp @@ -1694,6 +1694,10 @@ void DrawPlayerTab() { ImU16 one = 1; ImGui::PushItemWidth(ImGui::GetFontSize() * 6); DrawGroupWithBorder([&]() { + ImGui::Text("Current B Item"); + ImGui::InputScalar("B Button", ImGuiDataType_U8, &gSaveContext.equips.buttonItems[0], &one, NULL); + ImGui::NewLine(); + ImGui::Text("Current C Equips"); ImGui::InputScalar("C Left", ImGuiDataType_U8, &gSaveContext.equips.buttonItems[1], &one, NULL); ImGui::SameLine();