summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm_sysm.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.