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.

Fixed lcd_getstringsize() for prop fonts. Now also counts the blank columns after each character.


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

+1 -1
+1 -1
firmware/drivers/lcd.c
··· 794 794 ch -= ASCII_MIN; 795 795 796 796 byte = char_dw_8x8_prop[ch][8]; 797 - width += byte>>4; 797 + width += (byte>>4) + 1; 798 798 if((byte & 0x0f) > height) 799 799 height = byte & 0x0f; 800 800