| 455 | size_t i; |
| 456 | json_t* pathJ; |
| 457 | json_array_foreach(recentPatchPathsJ, i, pathJ) { |
| 458 | std::string path = json_string_value(pathJ); |
| 459 | recentPatchPaths.push_back(path); |
| 460 | } |
| 461 | } |
| 462 | // Update recent patches to use new dir |
| 463 | if (asset::oldUserDir != "") { |
nothing calls this directly
no test coverage detected