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.

Theme Editor: Fixed another conditional child-counting bug

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

+2 -2
+2 -2
utils/themeeditor/skin_parser.c
··· 687 687 if(*cursor == ENUMLISTOPENSYM) 688 688 { 689 689 nested++; 690 - break; 691 690 } 692 691 else if(*cursor == ENUMLISTCLOSESYM) 693 692 { 694 693 nested--; 695 - break; 694 + if(nested == 0) 695 + break; 696 696 } 697 697 cursor++; 698 698 }