summaryrefslogtreecommitdiffstats
path: root/src/core/loader/xci.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-27 17:04:05 +0100
committerGitHub <noreply@github.com>2018-12-27 17:04:05 +0100
commitc4515d305b80556fc9b316805a50e2303304a457 (patch)
tree9ef68f80306b0bfbd17e84e70c44f3656c057fc5 /src/core/loader/xci.cpp
parentMerge pull request #1946 from lioncash/decl (diff)
parentam: Implement GetSaveDataSize and ExtendSaveData (diff)
downloadyuzu-c4515d305b80556fc9b316805a50e2303304a457.tar
yuzu-c4515d305b80556fc9b316805a50e2303304a457.tar.gz
yuzu-c4515d305b80556fc9b316805a50e2303304a457.tar.bz2
yuzu-c4515d305b80556fc9b316805a50e2303304a457.tar.lz
yuzu-c4515d305b80556fc9b316805a50e2303304a457.tar.xz
yuzu-c4515d305b80556fc9b316805a50e2303304a457.tar.zst
yuzu-c4515d305b80556fc9b316805a50e2303304a457.zip
Diffstat (limited to 'src/core/loader/xci.cpp')
-rw-r--r--src/core/loader/xci.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/loader/xci.cpp b/src/core/loader/xci.cpp
index bd5a83b49..e67e43c69 100644
--- a/src/core/loader/xci.cpp
+++ b/src/core/loader/xci.cpp
@@ -121,10 +121,11 @@ ResultStatus AppLoader_XCI::ReadTitle(std::string& title) {
return ResultStatus::Success;
}
-ResultStatus AppLoader_XCI::ReadDeveloper(std::string& developer) {
+ResultStatus AppLoader_XCI::ReadControlData(FileSys::NACP& control) {
if (nacp_file == nullptr)
return ResultStatus::ErrorNoControl;
- developer = nacp_file->GetDeveloperName();
+ control = *nacp_file;
return ResultStatus::Success;
}
+
} // namespace Loader