A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
2
fork

Configure Feed

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

Fix some typos


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21077 a1c6a512-1295-4272-9138-f99709370657

+3 -3
+2 -2
apps/plugins/lua/rocklib.c
··· 226 226 #ifdef HAVE_LCD_COLOR 227 227 check_tablevalue(L, "lss_pattern", tablepos, &vp->lss_pattern, true); 228 228 check_tablevalue(L, "lse_pattern", tablepos, &vp->lse_pattern, true); 229 - check_tablevalue(L, "lst_pattern", tablepos, &vp->lse_pattern, true); 229 + check_tablevalue(L, "lst_pattern", tablepos, &vp->lst_pattern, true); 230 230 #endif 231 231 #endif 232 232 ··· 243 243 244 244 RB_WRAP(clear_viewport) 245 245 { 246 - int screen = luaL_optint(L, 2, SCREEN_MAIN); 246 + int screen = luaL_optint(L, 1, SCREEN_MAIN); 247 247 rb->screens[screen]->clear_viewport(); 248 248 return 0; 249 249 }
+1 -1
apps/plugins/test_viewports.lua
··· 113 113 114 114 rb.button_get(true) 115 115 116 - rb.set_viewport() 116 + rb.set_viewport(nil)