Skip to content

Commit

Permalink
3DS theme: Fix bottom START button not doing anything
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Sep 22, 2024
1 parent 3a268b3 commit dae504d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion romsel_dsimenutheme/arm9/source/fileBrowse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3614,7 +3614,7 @@ std::string browseForFile(const std::vector<std::string_view> extensionList) {
ms().cursorPosition[ms().secondaryDevice] = last_used_box;

// Startup...
if ((((pressed & KEY_A) || (pressed & KEY_START)) && bannerTextShown && showSTARTborder) || (gameTapped)) {
if ((((pressed & KEY_A) || (pressed & KEY_START) || (ms().theme == TWLSettings::ETheme3DS && (pressed & KEY_TOUCH) && touch.py > 171)) && bannerTextShown && showSTARTborder) || gameTapped) {
bannerTextShown = false; // Redraw title when done
DirEntry *entry = &dirContents[scrn].at(CURPOS + PAGENUM * 40);
if (entry->isDirectory) {
Expand Down

0 comments on commit dae504d

Please sign in to comment.