mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-13 03:29:11 +00:00
GameList: Show game mod descriptor .json files in game list.
This commit is contained in:
parent
aa0595589a
commit
da161faff4
10 changed files with 80 additions and 17 deletions
|
@ -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 "";
|
||||
}
|
||||
|
|
|
@ -39,6 +39,7 @@ enum class BlobType
|
|||
TGC,
|
||||
WIA,
|
||||
RVZ,
|
||||
MOD_DESCRIPTOR,
|
||||
};
|
||||
|
||||
std::string GetName(BlobType blob_type, bool translate);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue