diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2021-10-26 02:01:16 +0200 |
|---|---|---|
| committer | Admiral H. Curtiss <pikachu025@gmail.com> | 2021-12-12 21:26:09 +0100 |
| commit | da161faff46d9de45b4e80ebf498fc11f85bb493 (patch) | |
| tree | 8f94fe54b347dd279c3a7d0f939ed1d064f5c80f /Source/Core/DiscIO | |
| parent | aa0595589aa10d5c6958b61814628d8c12f3f087 (diff) | |
GameList: Show game mod descriptor .json files in game list.
Diffstat (limited to 'Source/Core/DiscIO')
| -rw-r--r-- | Source/Core/DiscIO/Blob.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/DiscIO/Blob.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/Blob.cpp b/Source/Core/DiscIO/Blob.cpp index 4eac308a27..7062c363cd 100644 --- a/Source/Core/DiscIO/Blob.cpp +++ b/Source/Core/DiscIO/Blob.cpp @@ -50,6 +50,8 @@ std::string GetName(BlobType blob_type, bool translate) return "WIA"; case BlobType::RVZ: return "RVZ"; + case BlobType::MOD_DESCRIPTOR: + return translate_str("Mod"); default: return ""; } diff --git a/Source/Core/DiscIO/Blob.h b/Source/Core/DiscIO/Blob.h index 3d593049f9..0a7cf09664 100644 --- a/Source/Core/DiscIO/Blob.h +++ b/Source/Core/DiscIO/Blob.h @@ -39,6 +39,7 @@ enum class BlobType TGC, WIA, RVZ, + MOD_DESCRIPTOR, }; std::string GetName(BlobType blob_type, bool translate); |
