Skip to content

Commit

Permalink
add button to new menu bar
Browse files Browse the repository at this point in the history
  • Loading branch information
inspectredc committed Sep 1, 2023
1 parent 024ddf7 commit 1ede535
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion soh/soh/SohMenuBar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,12 @@ void DrawCheatsMenu() {
if (ImGui::Button("Change Age")) {
CVarSetInteger("gSwitchAge", 1);
}
UIWidgets::Tooltip("Switches Link's age and reloads the area.");
UIWidgets::Tooltip("Switches Link's age and reloads the area.");

if (ImGui::Button("Clear Cutscene Pointer")) {
GameInteractor::RawAction::ClearCutscenePointer();
}
UIWidgets::Tooltip("Clears the cutscene pointer to a value safe for wrong warps.");

ImGui::EndMenu();
}
Expand Down

0 comments on commit 1ede535

Please sign in to comment.