summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-06-01 19:42:54 +0200
committerGitHub <noreply@github.com>2020-06-01 19:42:54 +0200
commit8c84a7e7ec25db2165e36bf9cc1365618752d2a1 (patch)
tree70d94a1da1e95c7a050d21c3ad6112313ec96283 /src/core/hle
parenthid: Stub GetXpadIDs (diff)
downloadyuzu-8c84a7e7ec25db2165e36bf9cc1365618752d2a1.tar
yuzu-8c84a7e7ec25db2165e36bf9cc1365618752d2a1.tar.gz
yuzu-8c84a7e7ec25db2165e36bf9cc1365618752d2a1.tar.bz2
yuzu-8c84a7e7ec25db2165e36bf9cc1365618752d2a1.tar.lz
yuzu-8c84a7e7ec25db2165e36bf9cc1365618752d2a1.tar.xz
yuzu-8c84a7e7ec25db2165e36bf9cc1365618752d2a1.tar.zst
yuzu-8c84a7e7ec25db2165e36bf9cc1365618752d2a1.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/hid/hid.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp
index 18fb1d62c..72a050de2 100644
--- a/src/core/hle/service/hid/hid.cpp
+++ b/src/core/hle/service/hid/hid.cpp
@@ -323,8 +323,7 @@ void Hid::GetXpadIDs(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
const auto applet_resource_user_id{rp.Pop<u64>()};
- LOG_DEBUG(Service_HID, "(STUBBED) called, applet_resource_user_id={}",
- applet_resource_user_id);
+ LOG_DEBUG(Service_HID, "(STUBBED) called, applet_resource_user_id={}", applet_resource_user_id);
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);