Browse Source
IsVibrationEnabled() as a const member func
pull/15/merge
Morph1984
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|
} |
|
|
|
|
|
|
|
|