Add missing instructions

This commit is contained in:
BernardoGiordano 2019-09-15 00:32:32 +02:00
parent ccb8f7aa47
commit b4686769f9
2 changed files with 7 additions and 5 deletions

View file

@ -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)

View file

@ -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");
}