aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/cfg
Commit message (Collapse)AuthorAge
* Services/CFG: Added some missing functions to cfg:sGravatar Subv2015-07-20
|
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-29
|
* CFG: Update the cfg service to be like other integrated servicesGravatar purpasmart962015-05-15
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* FileSys: De-inline Path membersGravatar Yuri Kunde Schlesner2015-05-06
|
* FileSys: Clean-up includes, de-inline destructorsGravatar Yuri Kunde Schlesner2015-05-06
|
* Services: Initialize all state variables at bootup.Gravatar bunnei2015-05-01
|
* Services/Loader: Use more sensible log formats for certain functionsGravatar purpasmart962015-04-27
| | | | along with more info being logged.
* Services: Stubs and minor changesGravatar purpasmart962015-04-02
|
* Merge pull request #589 from kevinhartman/config-errorsGravatar bunnei2015-03-09
|\ | | | | Fix errorcodes for bad config block request
* | Services: Moved the PTM and APT services to their own folderGravatar Subv2015-03-03
| | | | | | | | | | | | 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.Gravatar Subv2015-02-25
| | | | | | | | Ported to the new factory pattern we have for archives.
| * Fix error message for bad config block request.Gravatar Kevin Hartman2015-02-20
|/
* Build: Fixed some warningsGravatar Subv2015-02-12
|
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-10
| | | | | | | 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_stubsGravatar bunnei2015-02-10
|\ | | | | Services: Stub some functions
| * Services: Stub some functionsGravatar purpasmart962015-02-07
| |
* | Service: Clean-up InterfaceGravatar Yuri Kunde Schlesner2015-02-02
|/
* core: Fix a few docstringsGravatar Lioncash2015-01-20
|
* Services: Added some missing services.Gravatar Subv2015-01-13
| | | | | 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_reorderGravatar bunnei2015-01-06
|\ | | | | Archives: Change the folder layout of some archives.
* | Services: Clean up a few things and add a few function namesGravatar purpasmart962015-01-05
| |
| * Archives: Changed the way paths are built for the archives.Gravatar Subv2015-01-03
|/ | | | 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
* More services & small clean upsGravatar purpasmart962014-12-25
|
* CFG: Fixed some warnings and errors in ClangGravatar Subv2014-12-21
|
* CFG: More style changesGravatar Subv2014-12-21
|
* CFGU: IndentationGravatar Subv2014-12-21
|
* CFG: Some indentationGravatar Subv2014-12-21
|
* CFG: Changed the CreateConfigInfoBlk search loopGravatar Subv2014-12-21
|
* CFG: Corrected the licenses in cfg_i.cpp and cfg_u.cppGravatar Subv2014-12-21
|
* CFG: Create a new subfolder cfg inside service to handle cfgGravatar Subv2014-12-21
Moved most of the shared CFG code there, implemented a few CFG:I functions