summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii/mii_types.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2023-09-17 18:41:57 +0200
committergerman77 <juangerman-13@hotmail.com>2023-09-18 00:06:23 +0200
commit1e8616bd012c91764ed83a6eac3d8334e192af5f (patch)
tree0b3a28c0d01c34fc018a12dd88349ff455fd7e69 /src/core/hle/service/mii/mii_types.h
parentMerge pull request #11529 from lat9nq/no-oob-names-pls (diff)
downloadyuzu-1e8616bd012c91764ed83a6eac3d8334e192af5f.tar
yuzu-1e8616bd012c91764ed83a6eac3d8334e192af5f.tar.gz
yuzu-1e8616bd012c91764ed83a6eac3d8334e192af5f.tar.bz2
yuzu-1e8616bd012c91764ed83a6eac3d8334e192af5f.tar.lz
yuzu-1e8616bd012c91764ed83a6eac3d8334e192af5f.tar.xz
yuzu-1e8616bd012c91764ed83a6eac3d8334e192af5f.tar.zst
yuzu-1e8616bd012c91764ed83a6eac3d8334e192af5f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/mii/mii_types.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/hle/service/mii/mii_types.h b/src/core/hle/service/mii/mii_types.h
index 611ff4f81..9efe6c915 100644
--- a/src/core/hle/service/mii/mii_types.h
+++ b/src/core/hle/service/mii/mii_types.h
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
+// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
@@ -26,14 +26,14 @@ constexpr u8 MaxEyebrowScale = 8;
constexpr u8 MaxEyebrowAspect = 6;
constexpr u8 MaxEyebrowRotate = 11;
constexpr u8 MaxEyebrowX = 12;
-constexpr u8 MaxEyebrowY = 18;
+constexpr u8 MaxEyebrowY = 15;
constexpr u8 MaxNoseScale = 8;
constexpr u8 MaxNoseY = 18;
constexpr u8 MaxMouthScale = 8;
constexpr u8 MaxMoutAspect = 6;
constexpr u8 MaxMouthY = 18;
constexpr u8 MaxMustacheScale = 8;
-constexpr u8 MasMustacheY = 16;
+constexpr u8 MaxMustacheY = 16;
constexpr u8 MaxGlassScale = 7;
constexpr u8 MaxGlassY = 20;
constexpr u8 MaxMoleScale = 8;
@@ -599,6 +599,7 @@ enum class ValidationResult : u32 {
InvalidRegionMove = 0x31,
InvalidCreateId = 0x32,
InvalidName = 0x33,
+ InvalidChecksum = 0x34,
InvalidType = 0x35,
};