summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/applet_profile_select.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-29service: am: Improve profile select appletNarr the Reg1-5/+47
2023-03-25qt: implement RequestExit for appletsLiam1-1/+1
2023-03-25applets: implement RequestExitLiam1-0/+5
2023-03-07hle: rename legacy errors to ResultsLiam1-4/+3
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-2/+2
2022-06-14common: Change semantics of UNREACHABLE to unconditionally crashLiam1-1/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2022-02-05general: Rename NewUUID to UUID, and remove the previous UUID implMorph1-3/+2
This completes the removal of the old UUID implementation.
2022-02-05profile: Migrate to the new UUID implementationMorph1-4/+5
2021-09-22common/uuid: Add validity checking functions to interfaceLioncash1-1/+1
Given we have a function to invalidate, we should also have ones to query the validity. Also makes the code more straightforward to read.
2021-07-14applets: Append applet_ prefix to backend appletsMorph1-1/+1
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-1/+1
Transition to PascalCase for result names.
2021-04-17applets: Send focus state change message on applet state changeMorph1-1/+1
Fixes the softlock after the controller applet exits in Mario Kart 8 Deluxe.
2021-04-17applets: Make the applet mode a protected property of AppletMorph1-1/+1
2021-04-15applets: Pass in the LibraryAppletMode each applet's constructorMorph1-2/+2
2020-11-27service: Eliminate usages of the global system instanceLioncash1-3/+3
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
2020-02-08hle: services: Use std::shared_ptr instead of copy by value.bunnei1-2/+2
2020-02-06am: Refactor IStorage interface.bunnei1-2/+2
2019-09-05service/am: Remove usages of global system accessorsLioncash1-2/+3
Avoids the use of global accessors, removing the reliance on global state. This also makes dependencies explicit in the interface, as opposed to being hidden
2019-04-25mii_manager: Fix incorrect loop condition in mii UUID generation codeZach Hilman1-1/+1
2019-04-25profile_select: Port Service::Account::UUID to Common::UUIDZach Hilman1-3/+3
2019-04-17applets: Port current applets to take frontend in constructorZach Hilman1-3/+3
As opposed to using Core::System::GetInstance()
2018-12-28core: Add getter and setter for WebBrowserApplet frontendZach Hilman1-1/+1
2018-12-03applets: Correct event ResetTypes from OneShot to StickyZach Hilman1-0/+1
Fixes bugs relating to signalling in software keyboard.
2018-12-03applets: Implement ProfileSelect appletZach Hilman1-0/+76
Allows the player to select an emulated profile.