aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/UserChannelPersistence.cs
AgeCommit message (Collapse)Author
2023-04-27Move solution and projects to srcTSR Berry
2020-10-10Fix exiting emulator with multi programs (#1590)Mary
THis fix a bug introduced in #1560 that would cause "Stop emulation" to actually restart the game all the time.
2020-09-23Return "NotAvailable" when no UserChannel data is present. (#1569)riperiperi
* Return "NotAvailable" when no UserChannel data is present. * Return ObjectInvalid for undefined parameter kinds. * No need to specify which, there's only one. * Just works as a literal string.
2020-09-21hle/ui: Basic multi programs support (#1560)Mary
* hos/gui: Add a check of NCA program index in titleid This add a check to `ApplicationLoader` for the last 2 digits of the game TitleId who seems to be the NCA program index. We currently return the last index, instead of the lower one. Same check is added to ApplicationLibrary in the UI. I've cleaned up both file too. * hle: implement partial relaunch logic TODO: make the emulator auto relauch. * Handle auto relaunch * hle: Unify update usage system * hle: Implement support of multi programs in update system * Add some documentation * Address rip's comment Co-authored-by: Ac_K <Acoustik666@gmail.com>