summaryrefslogtreecommitdiff
path: root/apps/plugins/clock.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/clock.c')
-rw-r--r--apps/plugins/clock.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/clock.c b/apps/plugins/clock.c
index fa910efee2..1df0f709d4 100644
--- a/apps/plugins/clock.c
+++ b/apps/plugins/clock.c
@@ -65,7 +65,7 @@ void save_settings(void)
65 } 65 }
66 else 66 else
67 { 67 {
68 rb->splash(HZ, 0, true, "Setting save failed"); 68 rb->splash(HZ, true, "Setting save failed");
69 } 69 }
70} 70}
71 71
@@ -83,7 +83,7 @@ void load_settings(void)
83 /* Else, loading failed */ 83 /* Else, loading failed */
84 else 84 else
85 { 85 {
86 rb->splash(HZ, 0, true, "Setting load failed, using default settings."); 86 rb->splash(HZ, true, "Setting load failed, using default settings.");
87 } 87 }
88} 88}
89 89
@@ -121,7 +121,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
121 load_settings(); 121 load_settings();
122 122
123 rb->lcd_clear_display(); 123 rb->lcd_clear_display();
124 rb->splash(HZ, 0, true, "F1 for INFO"); 124 rb->splash(HZ, true, "F1 for INFO");
125 125
126 while (!PLUGIN_OK) 126 while (!PLUGIN_OK)
127 { 127 {
@@ -324,11 +324,11 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
324 324
325 /* Tell the user what's going on */ 325 /* Tell the user what's going on */
326 rb->lcd_clear_display(); 326 rb->lcd_clear_display();
327 rb->splash(HZ/2, 0, true, "Saving settings..."); 327 rb->splash(HZ/2, true, "Saving settings...");
328 /* Save to disk */ 328 /* Save to disk */
329 save_settings(); 329 save_settings();
330 rb->lcd_clear_display(); 330 rb->lcd_clear_display();
331 rb->splash(HZ, 0, true, "Saved!"); 331 rb->splash(HZ, true, "Saved!");
332 /* ...and exit. */ 332 /* ...and exit. */
333 return PLUGIN_OK; 333 return PLUGIN_OK;
334 break; 334 break;