summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/controllers/controller_base.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-10-19 06:15:46 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2021-11-25 03:30:24 +0100
commit4d308fd0b4fc8f14754c47811e751bf068b330b8 (patch)
tree3ea29a0c024fdc9ad7681aaf6160e46511ceb2a6 /src/core/hle/service/hid/controllers/controller_base.cpp
parentcore/hid: Documment some files (diff)
downloadyuzu-4d308fd0b4fc8f14754c47811e751bf068b330b8.tar
yuzu-4d308fd0b4fc8f14754c47811e751bf068b330b8.tar.gz
yuzu-4d308fd0b4fc8f14754c47811e751bf068b330b8.tar.bz2
yuzu-4d308fd0b4fc8f14754c47811e751bf068b330b8.tar.lz
yuzu-4d308fd0b4fc8f14754c47811e751bf068b330b8.tar.xz
yuzu-4d308fd0b4fc8f14754c47811e751bf068b330b8.tar.zst
yuzu-4d308fd0b4fc8f14754c47811e751bf068b330b8.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/controllers/controller_base.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/controllers/controller_base.cpp b/src/core/hle/service/hid/controllers/controller_base.cpp
index 9d1e6db6a..74a394784 100644
--- a/src/core/hle/service/hid/controllers/controller_base.cpp
+++ b/src/core/hle/service/hid/controllers/controller_base.cpp
@@ -11,7 +11,7 @@ ControllerBase::~ControllerBase() = default;
void ControllerBase::ActivateController() {
if (is_activated) {
- OnRelease();
+ return;
}
is_activated = true;
OnInit();