mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix missing titles for some file types
This commit is contained in:
parent
76242cb9f7
commit
9792453b27
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ void GameInfo::ParseParamSFO() {
|
|||
|
||||
std::string GameInfo::GetTitle() {
|
||||
std::lock_guard<std::mutex> guard(lock);
|
||||
if (hasFlags & GameInfoFlags::PARAM_SFO) {
|
||||
if ((hasFlags & GameInfoFlags::PARAM_SFO) && !title.empty()) {
|
||||
return title;
|
||||
} else {
|
||||
return filePath_.GetFilename();
|
||||
|
|
Loading…
Add table
Reference in a new issue