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.

fire: exit out of the plugin with both PLA_EXIT and PLA_CANCEL

Change-Id: I553fc5d02b7ee7004d791ba40cbd655f98c88f19

+3 -1
+3 -1
apps/plugins/fire.c
··· 55 55 }; 56 56 57 57 #define FIRE_QUIT PLA_CANCEL 58 + #define FIRE_QUIT2 PLA_EXIT 58 59 #define FIRE_SWITCH_FLAMES_TYPE PLA_LEFT 59 60 #define FIRE_SWITCH_FLAMES_MOVING PLA_RIGHT 60 61 ··· 176 177 break; 177 178 178 179 case 1: 179 - mult -= 2; 180 + mult -= 2; 180 181 do{ 181 182 pixel_value = ptr[FIRE_WIDTH-1] /* fire[y+1][x-1] */ 182 183 + ptr[FIRE_WIDTH] /* fire[y+1][x] */ ··· 330 331 331 332 switch(action){ 332 333 case FIRE_QUIT: 334 + case FIRE_QUIT2: 333 335 cleanup(NULL); 334 336 return PLUGIN_OK; 335 337