Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

3ds: Fix crash on shutdown

It is required to call gfxExit() before exiting the app if gfxInit() was previously called. Otherwise, the GSP thread continues to run after the stack is invalidated. The missing code is already in lcd_shutdown(), but it was never called because HAVE_LCD_SHUTDOWN was not defined for the ctru target.

Change-Id: I8999df6372cd593c5b52478028ad7421b23d5f92

+3
+3
firmware/export/config/ctru.h
··· 22 22 /* define this if you have a colour LCD */ 23 23 #define HAVE_LCD_COLOR 24 24 25 + /* Define this if the LCD can shut down */ 26 + #define HAVE_LCD_SHUTDOWN 27 + 25 28 /* define this if you want album art for this target */ 26 29 #define HAVE_ALBUMART 27 30