mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-30 06:25:20 -04:00
loader: Use result definitions instead of magic numbers
This commit is contained in:
parent
2678735f73
commit
db19fa0f7f
12 changed files with 96 additions and 92 deletions
|
@ -453,7 +453,7 @@ ContentManagement::ExternalContentSource *ContentManagement::GetExternalContentS
|
|||
|
||||
Result ContentManagement::SetExternalContentSource(u64 tid, FsFileSystem filesystem) {
|
||||
if (g_external_content_sources.size() >= 16) {
|
||||
return 0x409; /* LAUNCH_QUEUE_FULL */
|
||||
return ResultLoaderTooManyArguments; /* TODO: Is this an appropriate error? */
|
||||
}
|
||||
|
||||
/* Remove any existing ECS for this title. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue