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
L+R or L+Up: Pause
L+B: Stop
ZL/ZR or L/R: Previous/Next Song
L+Left: Show Controls

View File

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