summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/logo.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c
index b804264b45..50e9c02d68 100644
--- a/apps/plugins/logo.c
+++ b/apps/plugins/logo.c
@@ -122,11 +122,15 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) {
122 int x = (LCD_WIDTH / 2) - (WIDTH / 2); 122 int x = (LCD_WIDTH / 2) - (WIDTH / 2);
123 int y = (LCD_HEIGHT / 2) - (HEIGHT / 2); 123 int y = (LCD_HEIGHT / 2) - (HEIGHT / 2);
124 struct plugin_api* rb = api; 124 struct plugin_api* rb = api;
125 int dx;
126 int dy;
127
125 TEST_PLUGIN_API(api); 128 TEST_PLUGIN_API(api);
126 (void)parameter; 129 (void)parameter;
127 rb->srand(*rb->current_tick); 130 rb->srand(*rb->current_tick);
128 int dx = rb->rand()%11 - 5; 131
129 int dy = rb->rand()%11 - 5; 132 dx = rb->rand()%11 - 5;
133 dy = rb->rand()%11 - 5;
130 134
131 while (1) { 135 while (1) {
132 rb->lcd_clear_display(); 136 rb->lcd_clear_display();