diff options
| author | Tilka <tilkax@gmail.com> | 2024-10-05 22:31:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-05 22:31:58 +0100 |
| commit | d1ac40a72bf82c03580e435efb8b5c8666d7e2f3 (patch) | |
| tree | cd69536f0a35d09e2706d4bd02a30b4858e0fe12 /Source/Core | |
| parent | b191c0f7d8960b81bd2cfa8804307b01904887b4 (diff) | |
| parent | 6798f63a2ee12e17f37a1d392e432fc2c8d8b1df (diff) | |
Merge pull request #13101 from JosJuice/gametdbid-partition
Core: Include partition when calling GetGameTDBID for non-game partition
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/ConfigManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index a284cbe266..07ca7498da 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -114,7 +114,7 @@ void SConfig::SetRunningGameMetadata(const DiscIO::Volume& volume, } else { - SetRunningGameMetadata(volume.GetGameID(partition), volume.GetGameTDBID(), + SetRunningGameMetadata(volume.GetGameID(partition), volume.GetGameTDBID(partition), volume.GetTitleID(partition).value_or(0), volume.GetRevision(partition).value_or(0), volume.GetRegion()); } |
