| 596 | |
| 597 | static cc_bool ClO_GetHacks(void) { return Entities.CurPlayer->Hacks.Enabled; } |
| 598 | static void ClO_SetHacks(cc_bool v) { |
| 599 | Entities.CurPlayer->Hacks.Enabled = v; |
| 600 | Options_SetBool(OPT_HACKS_ENABLED, v); |
| 601 | HacksComp_Update(&Entities.CurPlayer->Hacks); |
| 602 | } |
| 603 | |
| 604 | static void ClassicOptionsScreen_RecreateExtra(struct MenuOptionsScreen* s) { |
| 605 | ButtonWidget_SetConst(&s->buttons[9], "Controls...", &s->titleFont); |
nothing calls this directly
no test coverage detected