1
0
Fork 0
forked from len0rd/rockbox

sysfont: Fix buffering debug screen, cube plugin, and vu_meter plugin

Instead of being hardcoded to expect 8px sysfont, make them scale properly

Change-Id: I02cc6cb53eebbd8241a142964bff305a1c5e535a
This commit is contained in:
Solomon Peachy 2025-03-04 13:39:23 -05:00
parent d5db4202ab
commit f3ce792af8
3 changed files with 20 additions and 20 deletions

View file

@ -797,7 +797,7 @@ enum plugin_status plugin_start(const void* parameter)
axes[curr].label,
paused ? axes[curr].angle : axes[curr].speed,
highspeed ? "(hs)" : "");
MYLCD(putsxy)(0, LCD_HEIGHT-8, buffer);
MYLCD(putsxy)(0, LCD_HEIGHT-SYSFONT_HEIGHT, buffer);
if (t_disp == 0)
redraw = true;
}