summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/cfg/cfg_i.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-05-16CFG: Update the cfg service to be like other integrated servicespurpasmart961-55/+2
2015-03-04Services: Moved the PTM and APT services to their own folderSubv1-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.
2015-02-11Asserts: break/crash program, fit to style guide; log.h->assert.harchshift1-1/+0
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.
2015-02-02Service: Clean-up InterfaceYuri Kunde Schlesner1-1/+1
2014-12-26More services & small clean upspurpasmart961-36/+33
2014-12-21CFG: Corrected the licenses in cfg_i.cpp and cfg_u.cppSubv1-1/+1
2014-12-21CFG: Create a new subfolder cfg inside service to handle cfgSubv1-9/+63
Moved most of the shared CFG code there, implemented a few CFG:I functions
2014-12-21License changepurpasmart961-1/+1
2014-11-21Add more services and some fixes, along with more "override"purpasmart961-0/+59
in the service's headers