mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 15:09:57 +00:00
IsVibrationEnabled() as a const member func
This commit is contained in:
parent
d6969fa7d4
commit
ef98828d40
1 changed files with 1 additions and 1 deletions
|
@ -641,7 +641,7 @@ void Controller_NPad::SetVibrationEnabled(bool can_vibrate) {
|
||||||
can_controllers_vibrate = can_vibrate;
|
can_controllers_vibrate = can_vibrate;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Controller_NPad::IsVibrationEnabled() {
|
bool Controller_NPad::IsVibrationEnabled() const {
|
||||||
return can_controllers_vibrate;
|
return can_controllers_vibrate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue