summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii/manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-01-20mii: Fix BuildRandomStoreData & Cleanup raw_dataChloe Marcec1-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.
2021-01-15core: Silence Wclass-memaccess warningsReinUsesLisp1-0/+1
This requires making several types trivial and properly initialize them whenever they are called.
2020-10-21Revert "core: Fix clang build"bunnei1-10/+10
2020-10-18core: Fix clang buildLioncash1-10/+10
Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
2020-10-17mii/manager: Make use of unused lower bound in GetRandomValue()Lioncash1-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.
2020-10-13core/CMakeLists: Make some warnings errorsLioncash1-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.
2020-07-17mii/manager: Resolve sign mismatch warningsLioncash1-3/+3
Previously the loop termination condition was testing variables of different signedness.
2020-07-17mii/manager: Make use of designated initializersLioncash1-53/+54
Allows returning the structure in a more concise manner.
2020-07-12hle: service: mii: Rewrite service to properly support creation of random and default miis.bunnei1-0/+483