summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMorph1984 <39850852+Morph1984@users.noreply.github.com>2019-09-04 10:15:49 -0400
committerGitHub <noreply@github.com>2019-09-04 10:15:49 -0400
commitef98828d40378f9c020f59dec25b4e21fe0dbc39 (patch)
tree8bc917d22ae6e352d12153d74db4afdf9884ba66 /src
parentd6969fa7d4fed7460530ab2e17f48043c8613f6b (diff)
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) {
can_controllers_vibrate = can_vibrate;
}
-bool Controller_NPad::IsVibrationEnabled() {
+bool Controller_NPad::IsVibrationEnabled() const {
return can_controllers_vibrate;
}