summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-11-19PTM & CFG: use the correct path and error code according to the new FileSys policywwylele1-1/+1
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner3-3/+3
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner3-4/+3
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot6-74/+82
2016-05-24New3DS: Minor style cleanup to #1520.bunnei1-2/+2
2016-04-20Implement CheckNew3DS and CheckNew3DSAppJamePeng3-3/+25
Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
2016-03-20HLE/FS: Implemented GetFormatInfoSubv1-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.
2016-02-12BitField: Make trivially copyable and remove assignment operatorMerryMage1-2/+2
2016-02-02services: Get rid of unnecessary includesLioncash4-8/+4
2015-12-30services: Update some function tablesLioncash1-1/+2
2015-10-24Fix copy pasteFiliph Sandström1-1/+1
2015-10-23Fix wrong branchFiliph Sandström1-0/+12
2015-10-23Add GetTotalStepCount StubFiliph Sandström1-1/+1
2015-10-23Update ptm.hFiliph Sandström1-0/+8
2015-05-29Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot2-4/+4
2015-05-12PTM: Changed the way the ptm services are handled to be like thepurpasmart965-125/+112
IR, HID, and APT services.
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-1/+1
2015-05-07FileSys: Clean-up includes, de-inline destructorsYuri Kunde Schlesner1-1/+2
2015-05-02Services: Initialize all state variables at bootup.bunnei1-2/+5
2015-04-25ptm_sysm: Add static specifier to IsLegacyPowerOffLioncash1-1/+1
2015-04-03Services: Stubs and minor changespurpasmart962-4/+4
2015-03-04Services: Moved the PTM and APT services to their own folderSubv8-0/+392
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.