summaryrefslogtreecommitdiff
path: root/apps/plugins/searchengine/searchengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/searchengine/searchengine.h')
-rw-r--r--apps/plugins/searchengine/searchengine.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/searchengine/searchengine.h b/apps/plugins/searchengine/searchengine.h
index d89c9c2a0e..18b68a8b35 100644
--- a/apps/plugins/searchengine/searchengine.h
+++ b/apps/plugins/searchengine/searchengine.h
@@ -25,15 +25,15 @@
25extern int w, h, y; 25extern int w, h, y;
26#ifdef HAVE_LCD_BITMAP 26#ifdef HAVE_LCD_BITMAP
27#define PUTS(str) do { \ 27#define PUTS(str) do { \
28 rb->lcd_putsxy(1, y, str); \ 28 rb->lcd_putsxy(1, y, str); \
29 rb->lcd_getstringsize(str, &w, &h); \ 29 rb->lcd_getstringsize(str, &w, &h); \
30 y += h + 1; \ 30 y += h + 1; \
31} while (0); \ 31} while (0); \
32rb->lcd_update() 32rb->lcd_update()
33#else 33#else
34#define PUTS(str) do { \ 34#define PUTS(str) do { \
35 rb->lcd_puts(0, y, str); \ 35 rb->lcd_puts(0, y, str); \
36 y = (y + 1) % 2; \ 36 y = (y + 1) % 2; \
37} while (0); 37} while (0);
38#endif 38#endif
39 39