summaryrefslogtreecommitdiff
path: root/src/core/hle/service/am
diff options
context:
space:
mode:
authorGravatar Narr the Reg2022-08-30 00:33:47 -0500
committerGravatar german772022-09-07 01:04:00 -0500
commit19a4e12e6ea6c3d06ee227f3ef1a6cbf93850f6e (patch)
treef96054552ebe182e75fd77eabdcdf205a0dffe46 /src/core/hle/service/am
parentcore: nfp: Implement amiibo encryption (diff)
downloadyuzu-19a4e12e6ea6c3d06ee227f3ef1a6cbf93850f6e.tar.gz
yuzu-19a4e12e6ea6c3d06ee227f3ef1a6cbf93850f6e.tar.xz
yuzu-19a4e12e6ea6c3d06ee227f3ef1a6cbf93850f6e.zip
core: nfp: Implement Convert and RecreateApplicationArea, accuracy fixes
Diffstat (limited to 'src/core/hle/service/am')
-rw-r--r--src/core/hle/service/am/applets/applet_mii_edit_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applets/applet_mii_edit_types.h b/src/core/hle/service/am/applets/applet_mii_edit_types.h
index 1b145b696..4705d019f 100644
--- a/src/core/hle/service/am/applets/applet_mii_edit_types.h
+++ b/src/core/hle/service/am/applets/applet_mii_edit_types.h
@@ -32,7 +32,7 @@ enum class MiiEditResult : u32 {
32}; 32};
33 33
34struct MiiEditCharInfo { 34struct MiiEditCharInfo {
35 Service::Mii::MiiInfo mii_info{}; 35 Service::Mii::CharInfo mii_info{};
36}; 36};
37static_assert(sizeof(MiiEditCharInfo) == 0x58, "MiiEditCharInfo has incorrect size."); 37static_assert(sizeof(MiiEditCharInfo) == 0x58, "MiiEditCharInfo has incorrect size.");
38 38