Skip to content

Commit

Permalink
temporary expert mode
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Mar 19, 2021
1 parent 0bf503c commit 4b471b3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ include $(DEVKITPRO)/libnx/switch_rules
#---------------------------------------------------------------------------------
VERSION_MAJOR := 3
VERSION_MINOR := 8
VERSION_MICRO := 11
VERSION_MICRO := 12
NIGHTLY :=

APP_TITLE := EdiZon SE
Expand Down
2 changes: 1 addition & 1 deletion include/version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define VERSION_STRING "3.8.11"
#define VERSION_STRING "3.8.12"
8 changes: 5 additions & 3 deletions source/guis/gui_cheats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,7 @@ void GuiCheats::draw_easymode()
{
Gui::drawTextAligned(font20, Gui::g_framebuffer_width - 50, Gui::g_framebuffer_height - 51, currTheme.textColor, "\uE0EF Update Cheats \uE0F0 Check for update \uE0E6 Page Up \uE0E7 Page Down \uE0E0 Cheat on/off \uE0E1 Quit", ALIGNED_RIGHT);
}
Gui::drawTextAligned(font20, Gui::g_framebuffer_width - 50, Gui::g_framebuffer_height - 251, currTheme.textColor, "\uE0E5 Enable expert mode until quit", ALIGNED_RIGHT);
Gui::drawRectangle(256, 50, Gui::g_framebuffer_width - 256, 206, currTheme.separatorColor);
// Don't draw icon
if ((m_debugger->getRunningApplicationTID() != 0) && HAVESAVE)
Expand Down Expand Up @@ -3164,10 +3165,11 @@ void GuiCheats::easymode_input(u32 kdown, u32 kheld)
{
Gui::g_requestExit = true;
}
// else if (kdown & KEY_L)
// {
else if (kdown & KEY_R)
{
Config::getConfig()->easymode = false;
}
// Gui::g_nextGui = GUI_MEMORY_EDITOR;
// }
else if (kdown & KEY_MINUS)
{
Gui::g_nextGui = GUI_FIRST_RUN;
Expand Down

0 comments on commit 4b471b3

Please sign in to comment.