[Core/Dialog/ELF/FileSystems/HLE/HW/Util] Added const reference for function params

This commit is contained in:
Herman Semenov
2023-12-14 14:22:24 +03:00
parent 5a0d54be83
commit af41281761
43 changed files with 83 additions and 83 deletions

View File

@@ -966,7 +966,7 @@ VFSFileSystem::~VFSFileSystem() {
entries.clear();
}
std::string VFSFileSystem::GetLocalPath(std::string localPath) {
std::string VFSFileSystem::GetLocalPath(const std::string &localPath) {
return basePath + localPath;
}