mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-24 08:39:51 +00:00
Fix path issue running tests on Linux.
No trailing slash. Doesn't hurt Windows to have an extra one.
This commit is contained in:
parent
cdbcc12a4e
commit
8e14dc1acd
@ -252,7 +252,7 @@ bool Load_PSP_ELF_PBP(const char *filename, std::string *error_string)
|
||||
|
||||
const std::string filepath = ReplaceAll(pathNorm.substr(rootNorm.size()), "\\", "/");
|
||||
file = filepath + "/" + file;
|
||||
path = rootNorm;
|
||||
path = rootNorm + "/";
|
||||
pspFileSystem.SetStartingDirectory(filepath);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user