| 232 | } |
| 233 | |
| 234 | void StoredHotkeys_Remove(int trigger, cc_uint8 modifiers) { |
| 235 | cc_string key; char keyBuffer[STRING_SIZE]; |
| 236 | String_InitArray(key, keyBuffer); |
| 237 | |
| 238 | String_Format2(&key, "hotkey-%c&%b", Input_StorageNames[trigger], &modifiers); |
| 239 | Options_SetString(&key, NULL); |
| 240 | } |
| 241 | |
| 242 | void StoredHotkeys_Add(int trigger, cc_uint8 modifiers, cc_bool moreInput, const cc_string* text) { |
| 243 | cc_string key; char keyBuffer[STRING_SIZE]; |
no test coverage detected