|
|
@@ -53,8 +53,16 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletOE.ApplicationProxyService.Applicati
|
|
|
// Only the first 0x18 bytes of the Data seems to be actually used.
|
|
|
storageData = StorageHelper.MakeLaunchParams(context.Device.System.State.Account.LastOpenedUser);
|
|
|
break;
|
|
|
+ case LaunchParameterKind.Unknown:
|
|
|
+ throw new NotImplementedException("Unknown LaunchParameterKind.");
|
|
|
+
|
|
|
default:
|
|
|
- throw new NotImplementedException($"Unknown LaunchParameterKind {kind}");
|
|
|
+ return ResultCode.ObjectInvalid;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (storageData == null)
|
|
|
+ {
|
|
|
+ return ResultCode.NotAvailable;
|
|
|
}
|
|
|
|
|
|
MakeObject(context, new AppletAE.IStorage(storageData));
|