Skip to content

Commit

Permalink
th15: allow setting power to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
32th-System committed Dec 31, 2024
1 parent df2bca5 commit f95a1ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thprac/src/thprac/thprac_th15.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ namespace TH15 {
Gui::GuiSlider<int, ImGuiDataType_S32> mLifeFragment { TH_LIFE_FRAGMENT, 0, 2 };
Gui::GuiSlider<int, ImGuiDataType_S32> mBomb { TH_BOMB, 0, 9 };
Gui::GuiSlider<int, ImGuiDataType_S32> mBombFragment { TH_BOMB_FRAGMENT, 0, 4 };
Gui::GuiSlider<int, ImGuiDataType_S32> mPower { TH_POWER, 100, 400 };
Gui::GuiSlider<int, ImGuiDataType_S32> mPower { TH_POWER, 0, 400 };
Gui::GuiDrag<int, ImGuiDataType_S32> mValue { TH_VALUE, 0, 999990, 10, 100000 };
Gui::GuiDrag<int, ImGuiDataType_S32> mGraze { TH_GRAZE, 0, 999999, 1, 100000 };

Expand Down

0 comments on commit f95a1ba

Please sign in to comment.