summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-09-28 15:37:02 +0200
committerGitHub <noreply@github.com>2023-09-28 15:37:02 +0200
commit257a6aa2ba5f966275ee3fc1898ba33d371df42c (patch)
tree5b36607d85d18944b605e992d7a7ed5f59d7c174 /src/core/hle/service/am
parentMerge pull request #11402 from FernandoS27/depth-bias-control (diff)
parentservice: mii: Fix reported bugs (diff)
downloadyuzu-257a6aa2ba5f966275ee3fc1898ba33d371df42c.tar
yuzu-257a6aa2ba5f966275ee3fc1898ba33d371df42c.tar.gz
yuzu-257a6aa2ba5f966275ee3fc1898ba33d371df42c.tar.bz2
yuzu-257a6aa2ba5f966275ee3fc1898ba33d371df42c.tar.lz
yuzu-257a6aa2ba5f966275ee3fc1898ba33d371df42c.tar.xz
yuzu-257a6aa2ba5f966275ee3fc1898ba33d371df42c.tar.zst
yuzu-257a6aa2ba5f966275ee3fc1898ba33d371df42c.zip
Diffstat (limited to 'src/core/hle/service/am')
-rw-r--r--src/core/hle/service/am/applets/applet_mii_edit.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/am/applets/applet_mii_edit.cpp b/src/core/hle/service/am/applets/applet_mii_edit.cpp
index ff77830d2..50adc7c02 100644
--- a/src/core/hle/service/am/applets/applet_mii_edit.cpp
+++ b/src/core/hle/service/am/applets/applet_mii_edit.cpp
@@ -145,6 +145,8 @@ void MiiEdit::MiiEditOutput(MiiEditResult result, s32 index) {
.index{index},
};
+ LOG_INFO(Input, "called, result={}, index={}", result, index);
+
std::vector<u8> out_data(sizeof(MiiEditAppletOutput));
std::memcpy(out_data.data(), &applet_output, sizeof(MiiEditAppletOutput));