diff --git a/Makefile b/Makefile index 1817d38..daecf7c 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ DATA := data INCLUDES := include lib/zipper/include APP_TITLE := All-in-One Switch Updater APP_AUTHOR := HamletDuFromage -APP_VERSION := 2.3.5 +APP_VERSION := 2.3.4 TARGET := $(notdir $(CURDIR)) ROMFS := resources diff --git a/source/confirm_page.cpp b/source/confirm_page.cpp index 739d208..53a5aac 100644 --- a/source/confirm_page.cpp +++ b/source/confirm_page.cpp @@ -26,7 +26,8 @@ ConfirmPage::ConfirmPage(brls::StagedAppletFrame* frame, std::string text, bool this->label->setHorizontalAlign(NVG_ALIGN_CENTER); this->label->setParent(this); - this->registerAction("", brls::Key::B, [this] { return true; }); + if(this->done) + this->registerAction("", brls::Key::B, [this] { return true; }); } void ConfirmPage::draw(NVGcontext* vg, int x, int y, unsigned width, unsigned height, brls::Style* style, brls::FrameContext* ctx)