This routine is for executing the commands of the ini file.
| 193 | |
| 194 | // This routine is for executing the commands of the ini file. |
| 195 | void Patch::LoadPatchLine(PatchGroup* group, const std::string_view line) |
| 196 | { |
| 197 | std::string_view key, value; |
| 198 | StringUtil::ParseAssignmentString(line, &key, &value); |
| 199 | |
| 200 | PatchTableExecute(group, key, value, s_patch_commands); |
| 201 | } |
| 202 | |
| 203 | u32 Patch::LoadPatchesFromString(std::vector<PatchGroup>* patch_list, const std::string& patch_file) |
| 204 | { |
nothing calls this directly
no test coverage detected