From 8e14dc1acdf068095d301b34064aa16b75aacd38 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 30 Aug 2014 22:38:19 -0700 Subject: [PATCH] Fix path issue running tests on Linux. No trailing slash. Doesn't hurt Windows to have an extra one. --- Core/PSPLoaders.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/PSPLoaders.cpp b/Core/PSPLoaders.cpp index fc2801bddd..75040cd312 100644 --- a/Core/PSPLoaders.cpp +++ b/Core/PSPLoaders.cpp @@ -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); }