aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/cfg_u.cpp
AgeCommit message (Collapse)Author
2014-12-21CFG: Create a new subfolder cfg inside service to handle cfgSubv
Moved most of the shared CFG code there, implemented a few CFG:I functions
2014-12-21CFGU: Some changesSubv
2014-12-21CFGU: Addressed some issues.Subv
2014-12-21CFGU: Addressed some comments.Subv
2014-12-21Style: Addressed some commentsSubv
2014-12-21CFG_U: Use Common::make_unique instead of the std versionSubv
2014-12-21CFG:U: Implemented some more blocksSubv
2014-12-21CFG: Implemented block 0x00070001 in the config savefileSubv
2014-12-21CFGU: Use an absolute offset in the config savefile blocksSubv
2014-12-21CFG: Load the Config savedata file if it already exists.Subv
2014-12-21CFGU: Added block 0x000A0002 to the default savegame fileSubv
That's the language id block, we're using LANGUAGE_EN for now. This block allows some games to boot further
2014-12-21CFG: Refactored how the config file works.Subv
It is now kept in memory as per 3dbrew, all updates happen on memory, then they can be saved using UpdateConfigNANDSavegame.
2014-12-21CFG:U: Add some data to the 0x00050005 config block.Subv
Seems to allow some games to boot further, thanks @Normmatt for sharing this information
2014-12-21CFG: Implemented the GetConfigInfoBlk2 function.Subv
Added a "config" file to the CFG process service (CFG:U), and added a few default blocks to it. Implemented GetSystemModel and GetModelNintendo2DS
2014-12-20License changepurpasmart96
2014-12-15Remove SyncRequest from K::Object and create a new K::Session typeYuri Kunde Schlesner
This is a first step at fixing the conceptual insanity that is our handling of service and IPC calls. For now, interfaces still directly derived from Session because we don't have the infrastructure to do it properly. (That is, Processes and scheduling them.)
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner
2014-12-10CFG:U: Store country codes as u16 instead of char pointers, and return the ↵Emmanuel Gil Peyrot
correct error in GetCountryCodeID.
2014-11-29CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString.Subv
2014-11-01Added a bunch of servicespurpasmart96