aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/cfg
AgeCommit message (Collapse)Author
2017-10-12Remove lots more 3DS-specific code.bunnei
2017-09-30Fixed type conversion ambiguityHuw Pascoe
2017-09-03APT: load different shared font depending on the regionwwylele
2017-08-08Update cryptoppJames
2017-06-18ResultVal: Remove MoveFrom()Yuri Kunde Schlesner
Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue.
2017-06-06Service: Remove unnecessary includes from service.hYuri Kunde Schlesner
This has a huge fallout in terms of needing to fix other files because all service implementations included that file.
2017-05-24FileSys: Move all result description to errors.hYuri Kunde Schlesner
2017-05-24result: Make error description a generic integerYuri Kunde Schlesner
It is now known that result code description vary depending on the module, and so they're best defined on a per-module basis. To support this, allow passing in an arbitrary integer instead of limiting to the ones in the ErrorDescription enum. These will be gradually migrated to their individual users, but a few will be kept as "common" codes shared by all modules.
2017-05-05Create a random console_unique_id (#2668)B3n30
* Create a random console_id when config save_file is created Added button in system config to refresh the console unique id * Moved the connect for the button from .ui file to constructor of ConfigureSystem * Added warning and info dialog Fixup: Make use of qt5 style connects, renamed the refresh button, removed some duplicate code, changed random device and moved all to the generate function * Changed the random generator to reflect what a real 3DS stores as console unique id Fixup: Changed the warning message * Fixup: Set and Create * Fixup: Added console id label, therfore removed second message box * Fixup: fixed the endianess * Fixup: more endianness fixes * Fixup: Endianness the 3rd
2017-03-12cfg: implement GenHashConsoleUniquewwylele
2017-01-19CFG: override language setting on bootwwylele
2017-01-04Fix some warnings (#2399)Jonathan Hao
2016-12-29Merge pull request #2240 from wwylele/auto-regionbunnei
Config: auto-select region and language
2016-12-09service: Add cfg:nor serviceLioncash
2016-12-09service: Drop '_Interface' from cfg service namesLioncash
2016-12-08cfg: Update function tablesLioncash
Updated based off information from 3dbrew
2016-12-07Config: auto-select region and languagewwylele
2016-11-27Merge pull request #2132 from wwylele/fix-fs-errSebastian Valle
Correct FS error codes & add path boundary checks
2016-11-19PTM & CFG: use the correct path and error code according to the new FileSys ↵wwylele
policy
2016-11-17cfg: add config block 0x00090000wwylele
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-18Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot
2016-07-03Service::CFG/FS: add and refactor out utilities for front-endwwylele
2016-07-03Service::CFG: move known block ID to an enumwwylele
2016-07-03Service::CFG: add SetConfigInfoBlk4wwylele
2016-07-02Service::CFG: add missing languagewwylele
2016-07-02Service::CFG: name sound output modeswwylele
2016-05-29Merge pull request #1692 from Subv/rm_getpointer2bunnei
Memory: Remove most usages of GetPointer
2016-05-21CFG: Remove use of Memory::GetPointerMerryMage
2016-05-03clean up config blockwwylele
2016-05-01remove duplicated function declarationwwylele
2016-04-29add config block 0x00170000wwylele
2016-03-28Add common methods to all cfg:* portsRyan Loebs
2016-03-20HLE/FS: Corrected some style concerns.Subv
2016-03-20HLE/FS: Fixed creating the config savefile when it doesn't exist.Subv
This fixes a regression.
2016-03-20HLE/FS: Implemented GetFormatInfoSubv
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-02-29Service/CFG: Fix potential endianess issueYuri Kunde Schlesner
2016-02-29Service/CFG: Add block 0x000A0000 (username) to default config fileYuri Kunde Schlesner
2016-02-12BitField: Make trivially copyable and remove assignment operatorMerryMage
2016-02-02services: Get rid of unnecessary includesLioncash
2015-09-30Service/CFG: Use a constexpr function for country initializationEmmanuel Gil Peyrot
This fixes a TODO left over from when we supported MSVC 2013.
2015-09-29fix some xcode 7.0 warningsMartin Lindhe
2015-09-16general: Silence some warnings when using clangLioncash
2015-09-14Service/CFG: Add default entry for block 0x000A0001 (birthday)Yuri Kunde Schlesner
2015-09-14Service/CFG: Correct flags in 2 default blocksYuri Kunde Schlesner
Verified against a 9.2.0-20 config save
2015-09-14Service/CFG: Add additional blocks to default save dataYuri Kunde Schlesner
These blocks are required by various games to boot.
2015-09-14Fix narrowing conversion warningYuri Kunde Schlesner
2015-09-14Service/CFG: Move several private types from the header to the cppYuri Kunde Schlesner