From b4686769f9f1e0d8ff67dab64bd8ce4327d71c22 Mon Sep 17 00:00:00 2001 From: BernardoGiordano Date: Sun, 15 Sep 2019 00:32:32 +0200 Subject: [PATCH] Add missing instructions --- Makefile | 2 +- switch/source/MainScreen.cpp | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 131b057..b854773 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SUBDIRS = 3ds switch VERSION_MAJOR := 3 VERSION_MINOR := 7 -VERSION_MICRO := 1 +VERSION_MICRO := 2 GIT_REV="$(shell git rev-parse --short HEAD)" all: $(SUBDIRS) diff --git a/switch/source/MainScreen.cpp b/switch/source/MainScreen.cpp index 5b77325..ba201cf 100644 --- a/switch/source/MainScreen.cpp +++ b/switch/source/MainScreen.cpp @@ -182,10 +182,12 @@ void MainScreen::draw() const SDLH_DrawRect(0, 0, 1280, 720, COLOR_OVERLAY); SDLH_DrawText(27, 1205, 646, theme().c6, "\ue085\ue086"); SDLH_DrawText(24, 58, 69, theme().c6, "\ue058 Tap to select title"); - SDLH_DrawText(24, 100, 300, theme().c6, "\ue006 \ue080 to scroll between titles"); - SDLH_DrawText(24, 100, 330, theme().c6, "\ue004 \ue005 to scroll between pages"); - SDLH_DrawText(24, 100, 360, theme().c6, "\ue000 to enter the selected title"); - SDLH_DrawText(24, 100, 390, theme().c6, "\ue001 to exit the selected title"); + SDLH_DrawText(24, 100, 270, theme().c6, "\ue006 \ue080 to scroll between titles"); + SDLH_DrawText(24, 100, 300, theme().c6, "\ue004 \ue005 to scroll between pages"); + SDLH_DrawText(24, 100, 330, theme().c6, "\ue000 to enter the selected title"); + SDLH_DrawText(24, 100, 360, theme().c6, "\ue001 to exit the selected title"); + SDLH_DrawText(24, 100, 390, theme().c6, "\ue003 to multiselect title"); + SDLH_DrawText(24, 100, 420, theme().c6, "Hold \ue003 to select all titles"); if (Configuration::getInstance().isPKSMBridgeEnabled()) { SDLH_DrawText(24, 100, 420, theme().c6, "\ue004 + \ue005 to enable PKSM bridge"); }