diff options
-rw-r--r-- | packaging/capi-system-haptic.spec | 10 | ||||
-rw-r--r-- | src/haptic.c | 1 |
2 files changed, 9 insertions, 2 deletions
diff --git a/packaging/capi-system-haptic.spec b/packaging/capi-system-haptic.spec index 5c62aeb..faf4378 100644 --- a/packaging/capi-system-haptic.spec +++ b/packaging/capi-system-haptic.spec @@ -2,7 +2,7 @@ Name: capi-system-haptic Summary: A Haptic library in Tizen C API Version: 0.1.0 -Release: 19 +Release: 21 Group: TO_BE/FILLED_IN License: TO BE FILLED IN Source0: %{name}-%{version}.tar.gz @@ -58,6 +58,14 @@ rm -rf %{buildroot} %{_libdir}/libcapi-system-haptic.so %changelog +* Thu Oct 04 2012 - Jiyoung Yun <jy910.yun@samsung.com> +- fix the bug regarding haptic_level_auto +- Tag : capi-system-haptic_0.1.0-21 + +* Fri Sep 21 2012 - Jiyoung Yun <jy910.yun@samsung.com> +- Add smack label +- Tag : capi-system-haptic_0.1.0-20 + * Thu Sep 06 2012 - Jiyoung Yun <jy910.yun@samsung.com> - fix TC error - Tag : capi-system-haptic_0.1.0-19 diff --git a/src/haptic.c b/src/haptic.c index c05fd2a..186a92f 100644 --- a/src/haptic.c +++ b/src/haptic.c @@ -173,7 +173,6 @@ int haptic_vibrate_monotone(int device_index, int duration_ms, int level) if(level == HAPTIC_LEVEL_0) return HAPTIC_ERROR_NONE; - level = (level == HAPTIC_LEVEL_AUTO) ? 0 : level; ret = device_haptic_play_monotone_with_detail_feedback_level(haptic_ids[device_index], duration_ms, level); if(ret < 0){ |