summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/general_backend.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-05service/am: Remove usages of global system accessorsLioncash1-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
2019-06-25applets: Implement Auth applet backendZach Hilman1-0/+116
This is responsible for parental controls and supports verifying, changing, and registering PIN codes.
2019-06-12common/hex_util: Combine HexVectorToString() and HexArrayToString()Lioncash1-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.
2019-05-25applets: Save report on stubbed appletZach Hilman1-1/+9
This also reworks the applet data storage to be peekable.
2019-04-17web_browser: Make OpenPage non-constZach Hilman1-0/+1
2019-04-17general_backend: Move StubApplet and add backend PhotoViewerZach Hilman1-1/+54
2018-11-22am: Return StubApplet instead of nullptr when AppletId not foundZach Hilman1-0/+5
2018-11-22applets: Add StubAppletZach Hilman1-0/+65
This will log all data it receives, log all calls to its methods and push dummy data into both channels on execution.