summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/cfg/cfg_u.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cfg: Update function tablesLioncash2016-12-081-0/+1
| | | | 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-10/+10
|
* Add common methods to all cfg:* portsRyan Loebs2016-03-291-0/+1
|
* services: Get rid of unnecessary includesLioncash2016-02-021-1/+0
|
* CFG: Update the cfg service to be like other integrated servicespurpasmart962015-05-161-219/+0
|
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-0/+2
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-9/+5
| | | | | | 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.
* Build: Fixed some warningsSubv2015-02-121-1/+1
|
* Asserts: break/crash program, fit to style guide; log.h->assert.harchshift2015-02-111-2/+1
| | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* Merge pull request #526 from purpasmart96/citra_stubsbunnei2015-02-111-3/+63
|\ | | | | Services: Stub some functions
| * Services: Stub some functionspurpasmart962015-02-081-3/+63
| |
* | Service: Clean-up InterfaceYuri Kunde Schlesner2015-02-021-1/+1
|/
* Services: Clean up a few things and add a few function namespurpasmart962015-01-061-3/+3
|
* More services & small clean upspurpasmart962014-12-261-3/+1
|
* CFG: Corrected the licenses in cfg_i.cpp and cfg_u.cppSubv2014-12-211-1/+1
|
* CFG: Create a new subfolder cfg inside service to handle cfgSubv2014-12-211-0/+194
Moved most of the shared CFG code there, implemented a few CFG:I functions