summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm_sysm.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: Add the ptm:s serviceLioncash2016-12-081-0/+4
| | | | 3dbrew documents this as being the exact same as ptm:sysm
* service: Add common ptm:u commands to other ptm servicesLioncash2016-12-081-0/+17
| | | | | 3dbrew indicates that all services have access to these commands except for ptm:sets.
* service: Drop '_Interface' in ptm service class namesLioncash2016-12-081-1/+1
| | | | Inheriting from Service::Interface makes this obvious.
* ptm: Update ptm_sysm function tableLioncash2016-12-081-2/+2
| | | | Updated based off information from 3dbrew.
* 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-1/+1
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-31/+31
|
* Implement CheckNew3DS and CheckNew3DSAppJamePeng2016-04-201-2/+2
| | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
* services: Get rid of unnecessary includesLioncash2016-02-021-1/+0
|
* services: Update some function tablesLioncash2015-12-301-1/+2
|
* PTM: Changed the way the ptm services are handled to be like thepurpasmart962015-05-121-44/+31
| | | | IR, HID, and APT services.
* ptm_sysm: Add static specifier to IsLegacyPowerOffLioncash2015-04-251-1/+1
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+63
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.