diff options
Diffstat (limited to '')
-rw-r--r-- | gui/checkbox.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/checkbox.cpp b/gui/checkbox.cpp index b6d5e6348..8739c9c25 100644 --- a/gui/checkbox.cpp +++ b/gui/checkbox.cpp @@ -166,6 +166,8 @@ int GUICheckbox::NotifyTouch(TOUCH_STATE state, int x, int y) DataManager::GetValue(mVarName, lastState); lastState = (lastState == 0) ? 1 : 0; DataManager::SetValue(mVarName, lastState); + + DataManager::Vibrate("tw_button_vibrate"); } return 0; } |