summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm_play.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: Add common ptm:u commands to other ptm servicesLioncash2016-12-081-0/+18
| | | | | 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.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-4/+4
|
* services: Get rid of unnecessary includesLioncash2016-02-021-1/+0
|
* Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot2015-05-291-1/+1
|
* PTM: Changed the way the ptm services are handled to be like thepurpasmart962015-05-121-4/+4
| | | | IR, HID, and APT services.
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+23
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.