| 444 | //=========================================================================== |
| 445 | |
| 446 | FString M_GetNormalizedPath(const char* path) |
| 447 | { |
| 448 | std::wstring wpath = WideString(path); |
| 449 | wchar_t buffer[MAX_PATH]; |
| 450 | GetFullPathNameW(wpath.c_str(), MAX_PATH, buffer, nullptr); |
| 451 | FString result(buffer); |
| 452 | FixPathSeperator(result); |
| 453 | return result; |
| 454 | } |
no test coverage detected