| 1167 | } |
| 1168 | |
| 1169 | FS_Path* CLocatorAPI::get_path(LPCSTR path) |
| 1170 | { |
| 1171 | PathPairIt P = pathes.find(path); |
| 1172 | R_ASSERT(P != pathes.end(), path); |
| 1173 | return P->second; |
| 1174 | } |
| 1175 | |
| 1176 | static std::recursive_mutex file_copy_mutex; |
| 1177 |
no test coverage detected