summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar VolcaEM2020-06-29 04:22:38 +0200
committerGravatar GitHub2020-06-29 04:22:38 +0200
commit86946ea13c4883672cf62f13c6d2a43ff5c2f352 (patch)
tree0e3acfa5c7bee2f80ec8a455f811d5e920f391fc /src
parentUse decimal instead of hexadecimal (diff)
downloadyuzu-86946ea13c4883672cf62f13c6d2a43ff5c2f352.tar.gz
yuzu-86946ea13c4883672cf62f13c6d2a43ff5c2f352.tar.xz
yuzu-86946ea13c4883672cf62f13c6d2a43ff5c2f352.zip
Remove duplicate functions
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/sm/controller.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/service/sm/controller.cpp b/src/core/hle/service/sm/controller.cpp
index cccccc30a..972aaa6d9 100644
--- a/src/core/hle/service/sm/controller.cpp
+++ b/src/core/hle/service/sm/controller.cpp
@@ -55,8 +55,6 @@ Controller::Controller() : ServiceFramework("IpcController") {
55 {2, &Controller::CloneCurrentObject, "CloneCurrentObject"}, 55 {2, &Controller::CloneCurrentObject, "CloneCurrentObject"},
56 {3, &Controller::QueryPointerBufferSize, "QueryPointerBufferSize"}, 56 {3, &Controller::QueryPointerBufferSize, "QueryPointerBufferSize"},
57 {4, &Controller::CloneCurrentObjectEx, "CloneCurrentObjectEx"}, 57 {4, &Controller::CloneCurrentObjectEx, "CloneCurrentObjectEx"},
58 {0x00000003, &Controller::QueryPointerBufferSize, "QueryPointerBufferSize"},
59 {0x00000004, &Controller::CloneCurrentObjectEx, "CloneCurrentObjectEx"},
60 }; 58 };
61 RegisterHandlers(functions); 59 RegisterHandlers(functions);
62} 60}