summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/cfg (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-03-29Add common methods to all cfg:* portsRyan Loebs3-0/+21
2016-03-20HLE/FS: Corrected some style concerns.Subv1-0/+1
2016-03-20HLE/FS: Fixed creating the config savefile when it doesn't exist.Subv1-1/+1
This fixes a regression.
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-03-01Service/CFG: Fix potential endianess issueYuri Kunde Schlesner1-2/+3
2016-03-01Service/CFG: Add block 0x000A0000 (username) to default config fileYuri Kunde Schlesner1-1/+14
2016-02-12BitField: Make trivially copyable and remove assignment operatorMerryMage1-3/+3
2016-02-02services: Get rid of unnecessary includesLioncash5-5/+8
2015-09-30Service/CFG: Use a constexpr function for country initializationEmmanuel Gil Peyrot1-4/+3
This fixes a TODO left over from when we supported MSVC 2013.
2015-09-29fix some xcode 7.0 warningsMartin Lindhe1-1/+1
2015-09-16general: Silence some warnings when using clangLioncash2-4/+4
2015-09-14Service/CFG: Add default entry for block 0x000A0001 (birthday)Yuri Kunde Schlesner1-0/+6
2015-09-14Service/CFG: Correct flags in 2 default blocksYuri Kunde Schlesner1-2/+2
Verified against a 9.2.0-20 config save
2015-09-14Service/CFG: Add additional blocks to default save dataYuri Kunde Schlesner1-0/+34
These blocks are required by various games to boot.
2015-09-14Fix narrowing conversion warningYuri Kunde Schlesner1-1/+1
2015-09-14Service/CFG: Move several private types from the header to the cppYuri Kunde Schlesner2-63/+49
2015-09-14Service/CFG: Clean up default block creationYuri Kunde Schlesner2-27/+17
2015-07-21Services/CFG: Added some missing functions to cfg:sSubv1-1/+3
2015-05-29Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot1-2/+2
2015-05-16CFG: Update the cfg service to be like other integrated servicespurpasmart965-337/+304
2015-05-07Common: Remove common.hYuri Kunde Schlesner2-0/+3
2015-05-07FileSys: De-inline Path membersYuri Kunde Schlesner1-0/+2
2015-05-07FileSys: Clean-up includes, de-inline destructorsYuri Kunde Schlesner1-2/+3
2015-05-02Services: Initialize all state variables at bootup.bunnei1-1/+1
2015-04-28Services/Loader: Use more sensible log formats for certain functionspurpasmart961-2/+2
along with more info being logged.
2015-04-03Services: Stubs and minor changespurpasmart962-4/+4
2015-03-04Services: Moved the PTM and APT services to their own folderSubv7-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.
2015-02-26Archives: Properly implemented the SystemSaveData archive.Subv1-26/+38
Ported to the new factory pattern we have for archives.
2015-02-21Fix error message for bad config block request.Kevin Hartman1-5/+10
2015-02-12Build: Fixed some warningsSubv1-1/+1
2015-02-11Asserts: break/crash program, fit to style guide; log.h->assert.harchshift4-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.
2015-02-08Services: Stub some functionspurpasmart961-3/+63
2015-02-02Service: Clean-up InterfaceYuri Kunde Schlesner3-3/+3
2015-01-20core: Fix a few docstringsLioncash1-1/+1
2015-01-13Services: Added some missing services.Subv2-0/+121
cfg:s, ptm:sysm, apt:s. apt:s is almost exactly the same as apt:u as per 3dbrew
2015-01-06Services: Clean up a few things and add a few function namespurpasmart961-3/+3
2015-01-04Archives: Changed the way paths are built for the archives.Subv1-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
2014-12-26More services & small clean upspurpasmart964-49/+36
2014-12-22CFG: Fixed some warnings and errors in ClangSubv2-4/+4
2014-12-22CFG: More style changesSubv1-5/+5
2014-12-21CFGU: IndentationSubv1-4/+3
2014-12-21CFG: Some indentationSubv1-11/+13
2014-12-21CFG: Changed the CreateConfigInfoBlk search loopSubv1-7/+4
2014-12-21CFG: Corrected the licenses in cfg_i.cpp and cfg_u.cppSubv2-2/+2
2014-12-21CFG: Create a new subfolder cfg inside service to handle cfgSubv6-0/+709
Moved most of the shared CFG code there, implemented a few CFG:I functions