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.

Fix whitespace for next commit

Change-Id: I8773ff7275372882321ebf2e66462781735cddc6

+2 -2
+2 -2
apps/pcmbuf.c
··· 243 243 { 244 244 i = (i + offset) % pcmbuf_desc_count; 245 245 246 - /* remainder => modulus */ 246 + /* remainder => modulus */ 247 247 if (i < 0) 248 248 i += pcmbuf_desc_count; 249 249 } ··· 811 811 while (i != chunk_widx) 812 812 { 813 813 size_t desc_size = index_chunkdesc(i)->size; 814 - 814 + 815 815 if (size < desc_size) 816 816 return i + size; 817 817