| 17 | static cc_string font_default = String_FromArray(defaultBuffer); |
| 18 | |
| 19 | void SysFont_SetDefault(const cc_string* fontName) { |
| 20 | String_Copy(&font_default, fontName); |
| 21 | Event_RaiseVoid(&ChatEvents.FontChanged); |
| 22 | } |
| 23 | |
| 24 | static void OnInit(void) { |
| 25 | Options_Get(OPT_FONT_NAME, &font_default, ""); |
no test coverage detected