| 162 | |
| 163 | |
| 164 | void Options_SetBool(const char* keyRaw, cc_bool value) { |
| 165 | static const cc_string str_true = String_FromConst("True"); |
| 166 | static const cc_string str_false = String_FromConst("False"); |
| 167 | Options_Set(keyRaw, value ? &str_true : &str_false); |
| 168 | } |
| 169 | |
| 170 | void Options_SetInt(const char* keyRaw, int value) { |
| 171 | cc_string str; char strBuffer[STRING_INT_CHARS]; |
no test coverage detected