From 41a9231a8748acfa381cb59cf54e234bf69ae15e Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 24 Jan 2021 14:06:35 +1000 Subject: [PATCH] GameList: Use region from exe --- src/frontend-common/game_list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend-common/game_list.cpp b/src/frontend-common/game_list.cpp index 5c604b6c2..fc1f2328e 100644 --- a/src/frontend-common/game_list.cpp +++ b/src/frontend-common/game_list.cpp @@ -98,7 +98,7 @@ bool GameList::GetExeListEntry(const char* path, GameListEntry* entry) // no way to detect region... entry->path = path; - entry->region = DiscRegion::Other; + entry->region = BIOS::GetPSExeDiscRegion(header); entry->total_size = ZeroExtend64(file_size); entry->last_modified_time = ffd.ModificationTime.AsUnixTimestamp(); entry->type = GameListEntryType::PSExe;