mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04: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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue