summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Morph19842019-09-04 10:15:49 -0400
committerGravatar GitHub2019-09-04 10:15:49 -0400
commitef98828d40378f9c020f59dec25b4e21fe0dbc39 (patch)
tree8bc917d22ae6e352d12153d74db4afdf9884ba66 /src
parentclang-format (diff)
downloadyuzu-ef98828d40378f9c020f59dec25b4e21fe0dbc39.tar.gz
yuzu-ef98828d40378f9c020f59dec25b4e21fe0dbc39.tar.xz
yuzu-ef98828d40378f9c020f59dec25b4e21fe0dbc39.zip
IsVibrationEnabled() as a const member func
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/hid/controllers/npad.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.cpp b/src/core/hle/service/hid/controllers/npad.cpp
index eb44b6026..e47fe8188 100644
--- a/src/core/hle/service/hid/controllers/npad.cpp
+++ b/src/core/hle/service/hid/controllers/npad.cpp
@@ -641,7 +641,7 @@ void Controller_NPad::SetVibrationEnabled(bool can_vibrate) {
641 can_controllers_vibrate = can_vibrate; 641 can_controllers_vibrate = can_vibrate;
642} 642}
643 643
644bool Controller_NPad::IsVibrationEnabled() { 644bool Controller_NPad::IsVibrationEnabled() const {
645 return can_controllers_vibrate; 645 return can_controllers_vibrate;
646} 646}
647 647