diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-01-02 06:06:53 +0100 |
|---|---|---|
| committer | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-01-02 06:06:53 +0100 |
| commit | 29068898046316d79b9ba521360060f8f3175360 (patch) | |
| tree | a2f3a544007a7b7e7dfcc9aed8c7df8f218370d7 /Source/Core/UICommon/GameFile.cpp | |
| parent | 85d2ea0dd28444effed13a622360253f2d74bcba (diff) | |
Core: Add a Maker field for GameModDescriptors.
Diffstat (limited to 'Source/Core/UICommon/GameFile.cpp')
| -rw-r--r-- | Source/Core/UICommon/GameFile.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/UICommon/GameFile.cpp b/Source/Core/UICommon/GameFile.cpp index c575d4018b..ee1ca0557f 100644 --- a/Source/Core/UICommon/GameFile.cpp +++ b/Source/Core/UICommon/GameFile.cpp @@ -177,6 +177,8 @@ GameFile::GameFile(std::string path) : m_file_path(std::move(path)) m_valid = true; m_file_size = File::GetSize(m_file_path); m_long_names.emplace(DiscIO::Language::English, std::move(descriptor->display_name)); + if (!descriptor->maker.empty()) + m_long_makers.emplace(DiscIO::Language::English, std::move(descriptor->maker)); m_internal_name = proxy.GetInternalName(); m_game_id = proxy.GetGameID(); m_gametdb_id = proxy.GetGameTDBID(); |
