diff options
author | bunnei <bunneidev@gmail.com> | 2018-12-27 11:04:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-27 11:04:05 -0500 |
commit | c4515d305b80556fc9b316805a50e2303304a457 (patch) | |
tree | 9ef68f80306b0bfbd17e84e70c44f3656c057fc5 /src/yuzu/configuration/configure_per_general.cpp | |
parent | 73c9ffc4222e37cfa50a2ef9d2133ba07929bb49 (diff) | |
parent | c643f364b4c81543782009ce4bb5a87021fe35ed (diff) |
Merge pull request #1879 from DarkLordZach/am-save-data-size
am: Implement GetSaveDataSize and ExtendSaveData using files
Diffstat (limited to 'src/yuzu/configuration/configure_per_general.cpp')
-rw-r--r-- | src/yuzu/configuration/configure_per_general.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/configuration/configure_per_general.cpp b/src/yuzu/configuration/configure_per_general.cpp index 5ca493b6d..dffaba5ed 100644 --- a/src/yuzu/configuration/configure_per_general.cpp +++ b/src/yuzu/configuration/configure_per_general.cpp @@ -108,9 +108,9 @@ void ConfigurePerGameGeneral::loadConfiguration() { if (loader->ReadTitle(title) == Loader::ResultStatus::Success) ui->display_name->setText(QString::fromStdString(title)); - std::string developer; - if (loader->ReadDeveloper(developer) == Loader::ResultStatus::Success) - ui->display_developer->setText(QString::fromStdString(developer)); + FileSys::NACP nacp; + if (loader->ReadControlData(nacp) == Loader::ResultStatus::Success) + ui->display_developer->setText(QString::fromStdString(nacp.GetDeveloperName())); ui->display_version->setText(QStringLiteral("1.0.0")); } |