mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-23 07:31:56 +00:00
Merge pull request #14938 from unknownbrackets/path-fix
UI: Fix game installer extension check
This commit is contained in:
commit
99df18bbae
@ -378,7 +378,6 @@ bool Load_PSP_ELF_PBP(FileLoader *fileLoader, std::string *error_string) {
|
||||
|
||||
Path full_path = fileLoader->GetPath();
|
||||
std::string path = full_path.GetDirectory();
|
||||
std::string extension = full_path.GetFileExtension();
|
||||
std::string file = full_path.GetFilename();
|
||||
|
||||
size_t pos = path.find("PSP/GAME/");
|
||||
|
@ -290,7 +290,7 @@ bool GameManager::InstallGame(Path url, Path fileName, bool deleteAfter) {
|
||||
|
||||
std::string extension = url.GetFileExtension();
|
||||
// Examine the URL to guess out what we're installing.
|
||||
if (extension == "cso" || extension == "iso") {
|
||||
if (extension == ".cso" || extension == ".iso") {
|
||||
// It's a raw ISO or CSO file. We just copy it to the destination.
|
||||
std::string shortFilename = url.GetFilename();
|
||||
return InstallRawISO(fileName, shortFilename, deleteAfter);
|
||||
|
Loading…
x
Reference in New Issue
Block a user