summaryrefslogtreecommitdiffstats
path: root/gui/checkbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/checkbox.cpp')
-rwxr-xr-x[-rw-r--r--]gui/checkbox.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/checkbox.cpp b/gui/checkbox.cpp
index de63cba36..025a803a2 100644..100755
--- a/gui/checkbox.cpp
+++ b/gui/checkbox.cpp
@@ -179,7 +179,10 @@ int GUICheckbox::NotifyTouch(TOUCH_STATE state, int x __unused, int y __unused)
lastState = (lastState == 0) ? 1 : 0;
DataManager::SetValue(mVarName, lastState);
+#ifndef TW_NO_HAPTICS
DataManager::Vibrate("tw_button_vibrate");
+#endif
+
}
return 0;
}