summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/general_backend.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-3/+3
| | | | Transition to PascalCase for result names.
* hle: kernel: Rename Process to KProcess.bunnei2021-05-061-1/+1
|
* service: Eliminate cases of member shadowingLioncash2021-04-261-1/+1
| | | | | Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors.
* applets: Send focus state change message on applet state changeMorph2021-04-171-3/+3
| | | | Fixes the softlock after the controller applet exits in Mario Kart 8 Deluxe.
* applets: Make the applet mode a protected property of AppletMorph2021-04-171-3/+3
|
* applets: Pass in the LibraryAppletMode each applet's constructorMorph2021-04-151-6/+8
|
* Merge pull request #5166 from lioncash/log-castbunnei2020-12-091-2/+2
|\ | | | | core: Remove unnecessary enum casts in log calls
| * core: Remove unnecessary enum casts in log callsLioncash2020-12-081-2/+2
| | | | | | | | | | Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts.
* | applets: Resolve variable shadowingMorph2020-12-051-1/+1
|/
* service: Eliminate usages of the global system instanceLioncash2020-11-271-11/+13
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* hle: services: Use std::shared_ptr instead of copy by value.bunnei2020-02-081-7/+7
|
* am: Refactor IStorage interface.bunnei2020-02-061-2/+2
|
* service/am: Remove usages of global system accessorsLioncash2019-09-051-5/+8
| | | | | | 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
* applets: Implement Auth applet backendZach Hilman2019-06-251-0/+116
| | | This is responsible for parental controls and supports verifying, changing, and registering PIN codes.
* Merge pull request #2482 from DarkLordZach/prepobunnei2019-06-211-1/+9
|\ | | | | core: Add detailed local reporting feature for development
| * applets: Save report on stubbed appletZach Hilman2019-05-251-1/+9
| | | | | | | | This also reworks the applet data storage to be peekable.
* | common/hex_util: Combine HexVectorToString() and HexArrayToString()Lioncash2019-06-121-6/+6
|/ | | | | | These can be generified together by using a concept type to designate them. This also has the benefit of not making copies of potentially very large arrays.
* web_browser: Make OpenPage non-constZach Hilman2019-04-171-0/+1
|
* general_backend: Move StubApplet and add backend PhotoViewerZach Hilman2019-04-171-0/+123