Refactor out Application details from Horizon (#1236)

* Initial Application refactor

* Misc typo and access modifier fixes

* Clean unused namespaces

* Address gdkchan's comments

* Move ticket reading to common method

* Change IParentalControlService to use ApplicationLoader.ControlData
This commit is contained in:
mageven
2020-05-15 11:46:46 +05:30
committed by GitHub
parent 0ff00bd6d3
commit ba4830293e
19 changed files with 609 additions and 641 deletions

View File

@@ -22,7 +22,7 @@ namespace Ryujinx.HLE.HOS.Services.Arp
launchProperty = new LibHac.Arp.ApplicationLaunchProperty();
launchProperty.BaseStorageId = StorageId.BuiltInUser;
launchProperty.ApplicationId = new ApplicationId(System.TitleId);
launchProperty.ApplicationId = new ApplicationId(System.Device.Application.TitleId);
return Result.Success;
}