| 540 | |
| 541 | static cc_bool ClO_GetMusic(void) { return Audio_MusicVolume > 0; } |
| 542 | static void ClO_SetMusic(cc_bool v) { |
| 543 | Audio_SetMusic(v ? 100 : 0); |
| 544 | Options_SetInt(OPT_MUSIC_VOLUME, Audio_MusicVolume); |
| 545 | } |
| 546 | |
| 547 | static cc_bool ClO_GetInvert(void) { return Camera.Invert; } |
| 548 | static void ClO_SetInvert(cc_bool v) { |
nothing calls this directly
no test coverage detected