| 169 | } |
| 170 | |
| 171 | void utils::SafememWrite(string const& str, uint32_t offset) |
| 172 | { |
| 173 | int32_t strlen = str.length(); |
| 174 | uint32_t baseOffset = SafememGetSettingsSize(); |
| 175 | sceAppUtilSaveSafeMemory(&strlen, 4, baseOffset + offset); |
| 176 | sceAppUtilSaveSafeMemory(str.c_str(), strlen, baseOffset + offset + 4); |
| 177 | } |
| 178 | |
| 179 | string utils::SafememRead(uint32_t offset) |
| 180 | { |
nothing calls this directly
no outgoing calls
no test coverage detected