summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii/raw_data.h
diff options
context:
space:
mode:
authorChloe Marcec <dmarcecguzman@gmail.com>2021-01-20 11:53:57 +0100
committerChloe Marcec <dmarcecguzman@gmail.com>2021-01-20 11:53:57 +0100
commit5b8bc56e65b4ef7457c0cc9a2fbf3cf7cb81227e (patch)
treece0d2ccfd2ac1936ffdc96c441ea1f2a909987f3 /src/core/hle/service/mii/raw_data.h
parentMerge pull request #5755 from FearlessTobi/port-5344 (diff)
downloadyuzu-5b8bc56e65b4ef7457c0cc9a2fbf3cf7cb81227e.tar
yuzu-5b8bc56e65b4ef7457c0cc9a2fbf3cf7cb81227e.tar.gz
yuzu-5b8bc56e65b4ef7457c0cc9a2fbf3cf7cb81227e.tar.bz2
yuzu-5b8bc56e65b4ef7457c0cc9a2fbf3cf7cb81227e.tar.lz
yuzu-5b8bc56e65b4ef7457c0cc9a2fbf3cf7cb81227e.tar.xz
yuzu-5b8bc56e65b4ef7457c0cc9a2fbf3cf7cb81227e.tar.zst
yuzu-5b8bc56e65b4ef7457c0cc9a2fbf3cf7cb81227e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/mii/raw_data.h27
1 files changed, 14 insertions, 13 deletions
diff --git a/src/core/hle/service/mii/raw_data.h b/src/core/hle/service/mii/raw_data.h
index a02a5c0fd..0e35d69d2 100644
--- a/src/core/hle/service/mii/raw_data.h
+++ b/src/core/hle/service/mii/raw_data.h
@@ -7,21 +7,22 @@
#include <array>
#include "common/common_types.h"
+#include "core/hle/service/mii/manager.h"
namespace Service::Mii::RawData {
-extern const std::array<u8, 1728> DefaultMii;
-extern const std::array<u8, 3672> RandomMiiFaceline;
-extern const std::array<u8, 1200> RandomMiiFacelineColor;
-extern const std::array<u8, 3672> RandomMiiFacelineWrinkle;
-extern const std::array<u8, 3672> RandomMiiFacelineMakeup;
-extern const std::array<u8, 3672> RandomMiiHairType;
-extern const std::array<u8, 1800> RandomMiiHairColor;
-extern const std::array<u8, 3672> RandomMiiEyeType;
-extern const std::array<u8, 588> RandomMiiEyeColor;
-extern const std::array<u8, 3672> RandomMiiEyebrowType;
-extern const std::array<u8, 3672> RandomMiiNoseType;
-extern const std::array<u8, 3672> RandomMiiMouthType;
-extern const std::array<u8, 588> RandomMiiGlassType;
+extern const std::array<Service::Mii::DefaultMii, 8> DefaultMii;
+extern const std::array<Service::Mii::RandomMiiData4, 18> RandomMiiFaceline;
+extern const std::array<Service::Mii::RandomMiiData3, 6> RandomMiiFacelineColor;
+extern const std::array<Service::Mii::RandomMiiData4, 18> RandomMiiFacelineWrinkle;
+extern const std::array<Service::Mii::RandomMiiData4, 18> RandomMiiFacelineMakeup;
+extern const std::array<Service::Mii::RandomMiiData4, 18> RandomMiiHairType;
+extern const std::array<Service::Mii::RandomMiiData3, 9> RandomMiiHairColor;
+extern const std::array<Service::Mii::RandomMiiData4, 18> RandomMiiEyeType;
+extern const std::array<Service::Mii::RandomMiiData2, 3> RandomMiiEyeColor;
+extern const std::array<Service::Mii::RandomMiiData4, 18> RandomMiiEyebrowType;
+extern const std::array<Service::Mii::RandomMiiData4, 18> RandomMiiNoseType;
+extern const std::array<Service::Mii::RandomMiiData4, 18> RandomMiiMouthType;
+extern const std::array<Service::Mii::RandomMiiData2, 3> RandomMiiGlassType;
} // namespace Service::Mii::RawData