summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-12/+19
|
* New3DS: Minor style cleanup to #1520.bunnei2016-05-241-2/+2
|
* Implement CheckNew3DS and CheckNew3DSAppJamePeng2016-04-201-1/+15
| | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
* HLE/FS: Implemented GetFormatInfoSubv2016-03-201-1/+1
| | | | Format information is currently only implemented for the ExtSaveData, SharedExtSaveData and SaveData archives, the information is stored in a file alongside the root folder of the archive.
* BitField: Make trivially copyable and remove assignment operatorMerryMage2016-02-121-2/+2
|
* Fix wrong branchFiliph Sandström2015-10-231-0/+12
|
* PTM: Changed the way the ptm services are handled to be like thepurpasmart962015-05-121-6/+44
| | | | IR, HID, and APT services.
* FileSys: Clean-up includes, de-inline destructorsYuri Kunde Schlesner2015-05-071-1/+2
|
* Services: Initialize all state variables at bootup.bunnei2015-05-021-2/+5
|
* Services: Stubs and minor changespurpasmart962015-04-031-2/+2
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+76
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.