diff --git a/Makefile b/Makefile index 2678138..baeea2a 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/include/version.h b/include/version.h index 66c59ba..64fa2d1 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION_STRING "3.8.11" \ No newline at end of file +#define VERSION_STRING "3.8.12" \ No newline at end of file diff --git a/source/guis/gui_cheats.cpp b/source/guis/gui_cheats.cpp index f58131d..5619c38 100644 --- a/source/guis/gui_cheats.cpp +++ b/source/guis/gui_cheats.cpp @@ -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) @@ -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;