summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/cfg (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Common: Remove common.hYuri Kunde Schlesner2015-05-072-0/+3
|
* FileSys: De-inline Path membersYuri Kunde Schlesner2015-05-071-0/+2
|
* FileSys: Clean-up includes, de-inline destructorsYuri Kunde Schlesner2015-05-071-2/+3
|
* Services: Initialize all state variables at bootup.bunnei2015-05-021-1/+1
|
* Services/Loader: Use more sensible log formats for certain functionspurpasmart962015-04-281-2/+2
| | | | along with more info being logged.
* Services: Stubs and minor changespurpasmart962015-04-032-4/+4
|
* Merge pull request #589 from kevinhartman/config-errorsbunnei2015-03-091-5/+10
|\ | | | | Fix errorcodes for bad config block request
| * Fix error message for bad config block request.Kevin Hartman2015-02-211-5/+10
| |
* | Services: Moved the PTM and APT services to their own folderSubv2015-03-047-50/+43
| | | | | | | | | | | | 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.
* | Archives: Properly implemented the SystemSaveData archive.Subv2015-02-261-26/+38
|/ | | | Ported to the new factory pattern we have for archives.
* Build: Fixed some warningsSubv2015-02-121-1/+1
|
* Asserts: break/crash program, fit to style guide; log.h->assert.harchshift2015-02-114-6/+2
| | | | | | | 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-023-3/+3
|/
* core: Fix a few docstringsLioncash2015-01-201-1/+1
|
* Services: Added some missing services.Subv2015-01-132-0/+121
| | | | | cfg:s, ptm:sysm, apt:s. apt:s is almost exactly the same as apt:u as per 3dbrew
* Merge pull request #376 from Subv/arc_reorderbunnei2015-01-071-2/+2
|\ | | | | Archives: Change the folder layout of some archives.
| * Archives: Changed the way paths are built for the archives.Subv2015-01-041-2/+2
| | | | | | | | Each archive now takes a mount point of either NAND or SDMC, and builds its own directory structure there, trying to simulate an HLE-friendly hardware layout
* | Services: Clean up a few things and add a few function namespurpasmart962015-01-061-3/+3
|/
* More services & small clean upspurpasmart962014-12-264-49/+36
|
* CFG: Fixed some warnings and errors in ClangSubv2014-12-222-4/+4
|
* CFG: More style changesSubv2014-12-221-5/+5
|
* CFGU: IndentationSubv2014-12-211-4/+3
|
* CFG: Some indentationSubv2014-12-211-11/+13
|
* CFG: Changed the CreateConfigInfoBlk search loopSubv2014-12-211-7/+4
|
* CFG: Corrected the licenses in cfg_i.cpp and cfg_u.cppSubv2014-12-212-2/+2
|
* CFG: Create a new subfolder cfg inside service to handle cfgSubv2014-12-216-0/+709
Moved most of the shared CFG code there, implemented a few CFG:I functions