diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-12-22 21:29:15 -0500 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-03-04 18:39:57 -0500 |
commit | 4495bf5706d989e2dddaa80c3435b20698e6c11a (patch) | |
tree | 753fecd3067b818f8a6cdcf52935896f9bf4389b /src | |
parent | c5091bfe00c241b6432367aeaea020d4e3d40d28 (diff) |
patch_manager: Display cheats in game list add-ons
Diffstat (limited to 'src')
-rw-r--r-- | src/core/file_sys/patch_manager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp index f0fb28e2f..2b09e5d35 100644 --- a/src/core/file_sys/patch_manager.cpp +++ b/src/core/file_sys/patch_manager.cpp @@ -455,6 +455,8 @@ std::map<std::string, std::string, std::less<>> PatchManager::GetPatchVersionNam } if (IsDirValidAndNonEmpty(mod->GetSubdirectory("romfs"))) AppendCommaIfNotEmpty(types, "LayeredFS"); + if (IsDirValidAndNonEmpty(mod->GetSubdirectory("cheats"))) + AppendCommaIfNotEmpty(types, "Cheats"); if (types.empty()) continue; |