summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nguyen Dac Nam2020-02-16 13:14:06 +0700
committerGravatar GitHub2020-02-16 13:14:06 +0700
commit6c0eb6026b8e71729bcb5ab8d3c8a5fd9bce1810 (patch)
tree41c36a64fe9dec0a6e4a3fc54044762955915d69
parentMerge pull request #3419 from yuzu-emu/revert-3386-gpu-mem-interface (diff)
downloadyuzu-6c0eb6026b8e71729bcb5ab8d3c8a5fd9bce1810.tar.gz
yuzu-6c0eb6026b8e71729bcb5ab8d3c8a5fd9bce1810.tar.xz
yuzu-6c0eb6026b8e71729bcb5ab8d3c8a5fd9bce1810.zip
HLE: correct function name of IUserLocalCommunicationService
402: function name should be Initialize2 (7.0.0+) not SetOperationMode Follow by: https://switchbrew.org/wiki/LDN_services#IUserLocalCommunicationService
-rw-r--r--src/core/hle/service/ldn/ldn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ldn/ldn.cpp b/src/core/hle/service/ldn/ldn.cpp
index ed5059047..15aa12645 100644
--- a/src/core/hle/service/ldn/ldn.cpp
+++ b/src/core/hle/service/ldn/ldn.cpp
@@ -129,7 +129,7 @@ public:
129 {304, nullptr, "Disconnect"}, 129 {304, nullptr, "Disconnect"},
130 {400, nullptr, "Initialize"}, 130 {400, nullptr, "Initialize"},
131 {401, nullptr, "Finalize"}, 131 {401, nullptr, "Finalize"},
132 {402, nullptr, "SetOperationMode"}, 132 {402, nullptr, "Initialize2"},
133 }; 133 };
134 // clang-format on 134 // clang-format on
135 135