summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii/mii.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-09-07core: nfp: Implement Convert and RecreateApplicationArea, accuracy fixesNarr the Reg1-10/+22
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-1/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-10-07service: Reduce header include overheadMorph1-1/+0
2021-07-14service: Append service name prefix to common filenamesMorph1-1/+1
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-10/+10
Transition to PascalCase for result names.
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-2/+2
Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
2020-11-27service: Eliminate usages of the global system instanceLioncash1-8/+10
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
2020-10-28service: Update function tablesLioncash1-0/+1
Updates function tables according to info on SwitchBrew.
2020-07-12hle: service: mii: Rewrite service to properly support creation of random and default miis.bunnei1-219/+96
2019-11-12service: Update function tablesLioncash1-0/+2
Keeps the function tables up to date. Updated based off information from Switchbrew.
2019-11-12service: Resolve sign conversion errorsLioncash1-3/+3
These are fairly trivial to resolve and most of the changes entail using RESULT_UNKNOWN over ResultCode(-1).
2019-07-07mii: Implement IDatabaseService SetInterfaceVersionZach Hilman1-1/+15
Appears to set a member variable used to affect the API that games access, and the method used to store data.
2019-04-25mii: Implement Delete and Destroy fileZach Hilman1-8/+79
2019-04-25mii: Implement IsUpdated command (IPC 0)Zach Hilman1-9/+18
2019-04-25mii: Implement IDatabaseService commands using MiiManagerZach Hilman1-15/+242
Since the MiiManager was designed around the IPC interface, this is quite easy. Only functions that were clearly defined were implemented.
2018-07-27service: Add mii servicesLioncash1-0/+107
Adds the skeleton for the mii services based off information provided by Switch Brew