mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
settings: fix duplicate object name
This commit is contained in:
parent
469e3290f6
commit
db55e9f6b1
2 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ namespace ams::settings::system {
|
|||
ErrorReportSharePermission GetErrorReportSharePermission() {
|
||||
s32 perm = 0;
|
||||
R_ABORT_UNLESS(settings::impl::GetErrorReportSharePermission(std::addressof(perm)));
|
||||
return static_cast<ErrorReportSharePermission>(model);
|
||||
return static_cast<ErrorReportSharePermission>(perm);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue