summaryrefslogtreecommitdiff
path: root/apps/plugins/cube.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/cube.c')
-rw-r--r--apps/plugins/cube.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/cube.c b/apps/plugins/cube.c
index 57f1015368..526400db61 100644
--- a/apps/plugins/cube.c
+++ b/apps/plugins/cube.c
@@ -580,7 +580,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
580 if (gray_init(rb, gbuf, gbuf_size, true, LCD_WIDTH, LCD_HEIGHT, 3, 0, NULL) 580 if (gray_init(rb, gbuf, gbuf_size, true, LCD_WIDTH, LCD_HEIGHT, 3, 0, NULL)
581 != 3) 581 != 3)
582 { 582 {
583 rb->splash(HZ, true, "Couldn't get grayscale buffer"); 583 rb->splash(HZ, "Couldn't get grayscale buffer");
584 return PLUGIN_ERROR; 584 return PLUGIN_ERROR;
585 } 585 }
586 /* init lcd_ function pointers */ 586 /* init lcd_ function pointers */
@@ -595,7 +595,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
595#else /* LCD_CHARCELLS */ 595#else /* LCD_CHARCELLS */
596 if (!pgfx_init(rb, 4, 2)) 596 if (!pgfx_init(rb, 4, 2))
597 { 597 {
598 rb->splash(HZ*2, true, "Old LCD :("); 598 rb->splash(HZ*2, "Old LCD :(");
599 return PLUGIN_OK; 599 return PLUGIN_OK;
600 } 600 }
601 pgfx_display(3, 0); 601 pgfx_display(3, 0);