summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii/manager.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* mii: Fix BuildRandomStoreData & Cleanup raw_dataChloe Marcec2021-01-201-35/+15
| | | | | Cleaned up mii raw data to reflect the underlying values instead of just a chunk of bytes. Fixed BuildRandomStoreData not actually generating random miis properly. "values" should be a u32, not a u8.
* core: Silence Wclass-memaccess warningsReinUsesLisp2021-01-151-0/+1
| | | | | This requires making several types trivial and properly initialize them whenever they are called.
* Revert "core: Fix clang build"bunnei2020-10-211-10/+10
|
* Merge pull request #4796 from lioncash/clangLC2020-10-211-10/+10
|\ | | | | core: Fix clang build
| * core: Fix clang buildLioncash2020-10-181-10/+10
| | | | | | | | | | | | | | Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
* | mii/manager: Make use of unused lower bound in GetRandomValue()Lioncash2020-10-171-1/+1
|/ | | | | | | | | | | Previously, the lower bound wasn't being used and zero was being used as the lower bound every time this function was called. This affects the outcome of some of the randomized entries a little bit, for example, the lower-bound for beard and mustache flags was supposed to be 1, not 0. Aside from these cases, the bug didn't affect anything else.
* core/CMakeLists: Make some warnings errorsLioncash2020-10-131-2/+2
| | | | | | | | | Makes our error coverage a little more consistent across the board by applying it to Linux side of things as well. This also makes it more consistent with the warning settings in other libraries in the project. This also updates httplib to 0.7.9, as there are several warning cleanups made that allow us to enable several warnings as errors.
* 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-121-0/+483