1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-05 10:56:31 -05:00

loader: Add support for reading the name of game's developer

This commit is contained in:
Zach Hilman
2018-11-28 14:01:56 -05:00
parent 51483d83bb
commit 5f0217592b
5 changed files with 26 additions and 0 deletions

View File

@@ -120,4 +120,11 @@ ResultStatus AppLoader_XCI::ReadTitle(std::string& title) {
title = nacp_file->GetApplicationName();
return ResultStatus::Success;
}
ResultStatus AppLoader_XCI::ReadDeveloper(std::string& developer) {
if (nacp_file == nullptr)
return ResultStatus::ErrorNoControl;
developer = nacp_file->GetDeveloperName();
return ResultStatus::Success;
}
} // namespace Loader