1
0
Fork 0
forked from len0rd/rockbox

jz4760: use SYSFONT in the hw info debug screen, and restore old font

Change-Id: I0c2df20a8c87f7a5bdf25d59904d32806171a544
This commit is contained in:
Solomon Peachy 2020-08-31 13:40:49 -04:00
parent 56b49b3074
commit a7ebd92ec8

View file

@ -233,7 +233,7 @@ bool dbg_hw_info(void)
#endif #endif
struct tm *cur_time; struct tm *cur_time;
lcd_setfont(FONT_UI); lcd_setfont(FONT_SYSFIXED);
while(btn ^ BUTTON_POWER) while(btn ^ BUTTON_POWER)
{ {
lcd_clear_display(); lcd_clear_display();
@ -259,6 +259,7 @@ bool dbg_hw_info(void)
lcd_update(); lcd_update();
sleep(HZ/16); sleep(HZ/16);
} }
lcd_setfont(FONT_UI);
return true; return true;
} }
#endif #endif