| 144 | } |
| 145 | |
| 146 | void MemorySettingsInterface::SetIntValue(const char* section, const char* key, s32 value) |
| 147 | { |
| 148 | SetValue(section, key, std::to_string(value)); |
| 149 | } |
| 150 | |
| 151 | void MemorySettingsInterface::SetUIntValue(const char* section, const char* key, u32 value) |
| 152 | { |
no test coverage detected