#######################################################################################################################* *----------------------------------------------------FontListScreen-------------------------------------------------------* *#########################################################################################################################*/
| 1658 | *----------------------------------------------------FontListScreen-------------------------------------------------------* |
| 1659 | *#########################################################################################################################*/ |
| 1660 | static void FontListScreen_EntryClick(void* screen, void* widget) { |
| 1661 | struct ListScreen* s = (struct ListScreen*)screen; |
| 1662 | cc_string fontName = ListScreen_UNSAFE_GetCur(s, widget); |
| 1663 | |
| 1664 | Options_Set(OPT_FONT_NAME, &fontName); |
| 1665 | SysFont_SetDefault(&fontName); |
| 1666 | } |
| 1667 | |
| 1668 | static void FontListScreen_UpdateEntry(struct ListScreen* s, struct ButtonWidget* button, const cc_string* text) { |
| 1669 | struct FontDesc font; |
nothing calls this directly
no test coverage detected