summaryrefslogtreecommitdiff
path: root/apps/plugins/robotfindskitten.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/robotfindskitten.c')
-rw-r--r--apps/plugins/robotfindskitten.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/plugins/robotfindskitten.c b/apps/plugins/robotfindskitten.c
index 003087b5c3..8426f35850 100644
--- a/apps/plugins/robotfindskitten.c
+++ b/apps/plugins/robotfindskitten.c
@@ -598,11 +598,9 @@ int screen[X_MAX + 1][Y_MAX + 1];
598 * 598 *
599 *****************************************************************************/ 599 *****************************************************************************/
600 600
601static void drawchar(int x, int y, char c) 601static inline void drawchar(int x, int y, char c)
602{ 602{
603 char str[2]; 603 rb->lcd_putsxyf(x*SYSFONT_WIDTH, y*SYSFONT_HEIGHT, "%c", c);
604 rb->snprintf(str, sizeof(str), "%c", c);
605 rb->lcd_putsxy(x*SYSFONT_WIDTH, y*SYSFONT_HEIGHT, str);
606} 604}
607 605
608static void draw(struct screen_object o) 606static void draw(struct screen_object o)