modified readme and control display to reflect new controls, commented out stop code

This commit is contained in:
Narayan
2025-08-19 18:09:05 -07:00
parent 865ddb49b2
commit 4958c5db3f
2 changed files with 17 additions and 17 deletions

View File

@@ -13,7 +13,7 @@ The latest 3DSX/CIA/3DS download can be found on the <a href="https://github.com
## Controls ## Controls
L+R or L+Up: Pause L+R or L+Up: Pause
L+B: Stop ZL/ZR or L/R: Previous/Next Song
L+Left: Show Controls L+Left: Show Controls

View File

@@ -30,7 +30,7 @@ static void showControls(void)
{ {
printf("Button mappings:\n" printf("Button mappings:\n"
"Pause: L+R or L+Up\n" "Pause: L+R or L+Up\n"
"Stop: L+B\n" "Previous/Next Song: ZL/ZR or L/R\n"
"A: Open File\n" "A: Open File\n"
"B: Go up folder\n" "B: Go up folder\n"
"Start: Exit\n" "Start: Exit\n"
@@ -402,24 +402,24 @@ int main(int argc, char **argv)
continue; continue;
} }
/* Stop */ // /* Stop */
if(kDown & KEY_B) // if(kDown & KEY_B)
{ // {
stopPlayback(); // stopPlayback();
/* Clear playback information. */ // /* Clear playback information. */
consoleSelect(&topScreenInfo); // consoleSelect(&topScreenInfo);
consoleClear(); // consoleClear();
consoleSelect(&topScreenLog); // consoleSelect(&topScreenLog);
//consoleClear(); // //consoleClear();
changeFile(NULL, &playbackInfo); // changeFile(NULL, &playbackInfo);
/* If the playback thread is currently playing, it will now // /* If the playback thread is currently playing, it will now
* stop and tell the Watchdog thread to display "Stopped". // * stop and tell the Watchdog thread to display "Stopped".
*/ // */
continue; // continue;
} // }
} }
if((kDown & KEY_UP || if((kDown & KEY_UP ||