summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #4365 from lioncash/miibunnei2020-07-181-53/+54
|\ | | | | mii/manager: Make use of designated initializers
| * mii/manager: Make use of designated initializersLioncash2020-07-171-53/+54
| | | | | | | | Allows returning the structure in a more concise manner.
* | mii/manager: Resolve sign mismatch warningsLioncash2020-07-171-3/+3
|/ | | | | Previously the loop termination condition was testing variables of different signedness.
* hle: service: mii: Rewrite service to properly support creation of random and default miis.bunnei2020-07-128-912/+3265
|
* core: Initialize several structs that make use of Common::UUID.bunnei2020-01-041-78/+78
|
* Merge pull request #3094 from lioncash/tablesbunnei2019-11-251-0/+2
|\ | | | | service: Update function tables
| * service: Update function tablesLioncash2019-11-121-0/+2
| | | | | | | | | | | | Keeps the function tables up to date. Updated based off information from Switchbrew.
* | service: Resolve sign conversion errorsLioncash2019-11-121-3/+3
|/ | | | | These are fairly trivial to resolve and most of the changes entail using RESULT_UNKNOWN over ResultCode(-1).
* Merge pull request #2708 from DarkLordZach/mii-db-source-crashDavid2019-09-041-0/+4
|\ | | | | mii: Handle logging of unknown database source
| * mii: Handle logging of unknown database sourceZach Hilman2019-07-101-0/+4
| |
* | mii: Implement IDatabaseService SetInterfaceVersionZach Hilman2019-07-071-1/+15
|/ | | Appears to set a member variable used to affect the API that games access, and the method used to store data.
* mii_manager: Fix incorrect loop condition in mii UUID generation codeZach Hilman2019-04-251-1/+1
|
* profile_select: Port Service::Account::UUID to Common::UUIDZach Hilman2019-04-251-1/+1
|
* mii: Implement Delete and Destroy fileZach Hilman2019-04-253-8/+116
|
* mii: Implement IsUpdated command (IPC 0)Zach Hilman2019-04-253-9/+34
|
* mii_manager: Cleanup and optimizationZach Hilman2019-04-252-32/+46
|
* mii: Implement IDatabaseService commands using MiiManagerZach Hilman2019-04-251-15/+242
| | | Since the MiiManager was designed around the IPC interface, this is quite easy. Only functions that were clearly defined were implemented.
* mii: Add MiiManager class to manage Mii databaseZach Hilman2019-04-252-0/+622
| | | Provides serialization/deserialization to the database in system save files, accessors for database state and proper handling of both major Mii formats (MiiInfo and MiiStoreData)
* service: Add mii servicesLioncash2018-07-272-0/+122
Adds the skeleton for the mii services based off information provided by Switch Brew