summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii/mii.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2023-09-11 16:53:23 +0200
committergerman77 <juangerman-13@hotmail.com>2023-09-11 17:54:32 +0200
commitec25f847d8c066241d3aa9bb00bd11cb0c47b161 (patch)
tree0fb517718e80499316fcd1994e93355391844af3 /src/core/hle/service/mii/mii.cpp
parentmii: Prepare Interface for new implementation (diff)
downloadyuzu-ec25f847d8c066241d3aa9bb00bd11cb0c47b161.tar
yuzu-ec25f847d8c066241d3aa9bb00bd11cb0c47b161.tar.gz
yuzu-ec25f847d8c066241d3aa9bb00bd11cb0c47b161.tar.bz2
yuzu-ec25f847d8c066241d3aa9bb00bd11cb0c47b161.tar.lz
yuzu-ec25f847d8c066241d3aa9bb00bd11cb0c47b161.tar.xz
yuzu-ec25f847d8c066241d3aa9bb00bd11cb0c47b161.tar.zst
yuzu-ec25f847d8c066241d3aa9bb00bd11cb0c47b161.zip
Diffstat (limited to 'src/core/hle/service/mii/mii.cpp')
-rw-r--r--src/core/hle/service/mii/mii.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/mii/mii.cpp b/src/core/hle/service/mii/mii.cpp
index 653c36740..3b83c5ed7 100644
--- a/src/core/hle/service/mii/mii.cpp
+++ b/src/core/hle/service/mii/mii.cpp
@@ -210,7 +210,7 @@ private:
LOG_DEBUG(Service_Mii, "called");
s32 index{};
- const Result result = manager.GetIndex(metadata, info, index);
+ const auto result = manager.GetIndex(metadata, info, index);
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(result);