From 0a7826f27d8953caa67c1dbc30568806a43f344d Mon Sep 17 00:00:00 2001 From: Finlay Davidson Date: Sat, 8 Jan 2022 03:55:04 +0100 Subject: [PATCH] Hotfix: don't require watch to be facing up to sleep --- src/components/motion/MotionController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/motion/MotionController.cpp b/src/components/motion/MotionController.cpp index 2f9660ed..23863279 100644 --- a/src/components/motion/MotionController.cpp +++ b/src/components/motion/MotionController.cpp @@ -68,7 +68,7 @@ int32_t MotionController::currentShakeSpeed() { } bool MotionController::ShouldLowerSleep() const { - return z <= 0 && y >= 512 && y >= lastY + 192; + return y >= 512 && y >= lastY + 192; } void MotionController::IsSensorOk(bool isOk) {