summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wear_ui.cpp2
-rw-r--r--wear_ui.h5
2 files changed, 4 insertions, 3 deletions
diff --git a/wear_ui.cpp b/wear_ui.cpp
index 55b7afc8f..ebe0dfe37 100644
--- a/wear_ui.cpp
+++ b/wear_ui.cpp
@@ -288,7 +288,7 @@ void WearRecoveryUI::progress_loop() {
if ((currentIcon == INSTALLING_UPDATE || currentIcon == ERASING)
&& !show_text) {
if (!intro_done) {
- if (current_frame == intro_frames - 1) {
+ if (current_frame >= intro_frames - 1) {
intro_done = true;
current_frame = 0;
} else {
diff --git a/wear_ui.h b/wear_ui.h
index 839a26438..259a63ee7 100644
--- a/wear_ui.h
+++ b/wear_ui.h
@@ -79,6 +79,9 @@ class WearRecoveryUI : public RecoveryUI {
int intro_frames;
int loop_frames;
+ // animation's fps (default: 30)
+ int animation_fps;
+
private:
Icon currentIcon;
@@ -86,8 +89,6 @@ class WearRecoveryUI : public RecoveryUI {
int current_frame;
- int animation_fps;
-
bool rtl_locale;
pthread_mutex_t updateMutex;