summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libsensors/AccelSensor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsensors/AccelSensor.cpp b/libsensors/AccelSensor.cpp
index d5040c1..fddb2cd 100644
--- a/libsensors/AccelSensor.cpp
+++ b/libsensors/AccelSensor.cpp
@@ -111,7 +111,7 @@ int AccelSensor::setDelay(int32_t handle, int64_t ns)
fd = open(input_sysfs_path, O_RDWR);
if (fd >= 0) {
char buf[80];
- sprintf(buf, "%lld", ns);
+ sprintf(buf, "%lld", ns / 10000000 * 10); // Some flooring to match stock value
write(fd, buf, strlen(buf)+1);
close(fd);
return 0;