Skip to content

Commit

Permalink
Fix / in Windows cache path. Likely doesn't affect anything but logs …
Browse files Browse the repository at this point in the history
…aesthetic.
  • Loading branch information
lhog committed Dec 18, 2023
1 parent 1c9ff4e commit 5cfd088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rts/Sim/Path/HAPFS/PathingState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ PCMemPool pcMemPool;
// PEMemPool peMemPool;

static const std::string GetPathCacheDir() {
return (FileSystem::GetCacheDir() + "/paths/");
return (FileSystem::GetCacheDir() + FileSystemAbstraction::GetNativePathSeparator() + "paths" + FileSystemAbstraction::GetNativePathSeparator());
}

static const std::string GetCacheFileName(const std::string& fileHashCode, const std::string& peFileName, const std::string& mapFileName) {
Expand Down

0 comments on commit 5cfd088

Please sign in to comment.