Skip to content

Commit

Permalink
Updated inputs in descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kipcode66 committed Sep 7, 2020
1 parent 1e837d1 commit 62269f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/menus/cheat_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Line lines[LINES] = {
{"infinite slingshot", InfiniteSlingshot, "Gives Link 99 slingshot pellets", true, &CheatItems[InfiniteSlingshot].active},
{"invincible", Invincible, "Makes Link invincible", true, &CheatItems[Invincible].active},
{"invincible enemies", InvincibleEnemies, "Makes some enemies invincible", true, &CheatItems[InvincibleEnemies].active},
{"moon jump", MoonJump, "Hold R+A to moon jump", true, &CheatItems[MoonJump].active}};
{"moon jump", MoonJump, "Hold Z+C+A to moon jump", true, &CheatItems[MoonJump].active}};

namespace Cheats {
using namespace Controller;
Expand Down
4 changes: 2 additions & 2 deletions src/menus/tools_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ Line lines[LINES] = {
{"link debug info", LINK_DEBUG_INDEX, "Show Link's position, angle, and speed", true, &ToolItems[LINK_DEBUG_INDEX].active},
{"no sinking in sand", SAND_INDEX, "Link won't sink in sand", true, &ToolItems[SAND_INDEX].active},
{"roll checker", ROLL_INDEX, "Frame counter for chaining rolls", true, &ToolItems[ROLL_INDEX].active},
{"teleport", TELEPORT_INDEX, "dpadUp to set, dpadDown to load", true, &ToolItems[TELEPORT_INDEX].active},
{"timer", TIMER_INDEX, "Frame timer: Z+C+1 to start/stop, Z+C+2 to reset", true, &ToolItems[TIMER_INDEX].active},
{"teleport", TELEPORT_INDEX, "Z+C+1 to set, Z+C+2 to load", true, &ToolItems[TELEPORT_INDEX].active},
{"timer", TIMER_INDEX, "Frame timer: Z+C+A+B to start/stop, Z+C+B+Start to reset", true, &ToolItems[TIMER_INDEX].active},
{"link tunic color: ", TUNIC_COLOR_INDEX, "Changes Link's tunic color", false, nullptr, MAX_TUNIC_COLORS}};

void ToolsMenu::render(Font& font) {
Expand Down

0 comments on commit 62269f4

Please # to comment.