From 9f9f8e0e39befd93fedcc85fb02a2cb2621b111f Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 10 Aug 2022 21:29:20 +1000 Subject: [PATCH] GameList: Fix title for ELFs --- pcsx2/Frontend/GameList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Frontend/GameList.cpp b/pcsx2/Frontend/GameList.cpp index 998982b06d..63f8a5a60b 100644 --- a/pcsx2/Frontend/GameList.cpp +++ b/pcsx2/Frontend/GameList.cpp @@ -172,7 +172,7 @@ bool GameList::GetElfListEntry(const std::string& path, GameList::Entry* entry) const std::string display_name(FileSystem::GetDisplayNameFromPath(path)); entry->path = path; entry->serial.clear(); - entry->title = Path::StripExtension(display_name); + entry->title = Path::GetFileTitle(display_name); entry->region = Region::Other; entry->total_size = static_cast(file_size); entry->type = EntryType::ELF;