| 570 | |
| 571 | static cc_bool ClO_GetSounds(void) { return Audio_SoundsVolume > 0; } |
| 572 | static void ClO_SetSounds(cc_bool v) { |
| 573 | Audio_SetSounds(v ? 100 : 0); |
| 574 | Options_SetInt(OPT_SOUND_VOLUME, Audio_SoundsVolume); |
| 575 | } |
| 576 | |
| 577 | static cc_bool ClO_GetShowFPS(void) { return Gui.ShowFPS; } |
| 578 | static void ClO_SetShowFPS(cc_bool v) { |
nothing calls this directly
no test coverage detected