summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt_u.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Bravely Default/Second stuck #1822 (#2188)pippo29312016-11-241-1/+1
| | | | | | | | | | | | | | | * Bravely Default/Second stuck #1822 CancelLibraryApplet stub * Log parameter. * Taking care of comments * Sync with 3DBrew * White space ? * lower case
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
|
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-191-2/+3
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-89/+88
|
* Correct APT::0x00550040 and APT::0x00560000 functionJamePeng2016-07-151-2/+2
|
* Implement CheckNew3DS and CheckNew3DSAppJamePeng2016-04-201-3/+5
| | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
* implement APT::GetStartupArgumentJamePeng2016-04-041-1/+1
|
* Merge pull request #1266 from Subv/miiappletbunnei2016-03-121-1/+1
|\ | | | | HLE/Applets: Implemented a dummy Mii Selector applet.
| * HLE/Applets: Implemented a dummy Mii Selector applet.Subv2016-03-121-1/+1
| | | | | | | | This prevents some games (like Super Mario 3D Land) from freezing when trying to launch it, however, it's not complete and won't let you go past Mii selection as the parameter structure hasn't been reverse engineered yet.
* | services: Get rid of unnecessary includesLioncash2016-02-021-3/+0
| |
* | services: Update some function tablesLioncash2015-12-301-0/+6
|/
* Service/APT: Fixed a regression, PreloadLibraryApplet should also start an applet when called.Subv2015-07-241-1/+1
|
* HLE/APT: Initial HLE support for applets.Subv2015-07-121-2/+2
| | | | Currently only the SWKBD is emulated, and there's currently no way to ask the user for input, so it always returns "Subv" as the text.
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-1/+0
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+103
This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.