diff options
| author | JosJuice <josjuice@gmail.com> | 2024-10-05 13:04:50 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2024-10-05 13:04:50 +0200 |
| commit | 6798f63a2ee12e17f37a1d392e432fc2c8d8b1df (patch) | |
| tree | 779819f37d94cf7b79f8b934f494fcd1b27a25fb /Source/Core | |
| parent | 2da3e49b1e876a28c93ad990c71e5d4bb2441f5b (diff) | |
Core: Include partition when calling GetGameTDBID for non-game partition
This problem was introduced in 8842a0f402ffe60a80ce7894bfd36afd039009fc
and is likely a copy-paste error.
Fixes the problem mentioned in the issue comment
https://bugs.dolphin-emu.org/issues/13640#note-2.
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()); } |
