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

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