shakewake: Fix names according to style guide

This commit is contained in:
Finlay Davidson 2023-03-05 14:53:49 +01:00 committed by Riku Isokoski
parent ada182336f
commit f993311830
4 changed files with 17 additions and 17 deletions

View file

@ -470,7 +470,7 @@ void SystemTask::UpdateMotion() {
if ((settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::RaiseWrist) &&
motionController.Should_RaiseWake(state == SystemTaskState::Sleeping)) ||
(settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::Shake) &&
motionController.Should_ShakeWake(settingsController.GetShakeThreshold()))) {
motionController.ShouldShakeWake(settingsController.GetShakeThreshold()))) {
GoToRunning();
}
}