summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/pong.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pong.c b/apps/plugins/pong.c
index 18fdcad9ae..882c1cda99 100644
--- a/apps/plugins/pong.c
+++ b/apps/plugins/pong.c
@@ -263,7 +263,7 @@ void showscore(struct pong *p)
263{ 263{
264 static char buffer[20]; 264 static char buffer[20];
265 265
266 snprintf(buffer, 20, "%d - %d", p->score[0], p->score[1]); 266 rb->snprintf(buffer, 20, "%d - %d", p->score[0], p->score[1]);
267 rb->lcd_puts(4, 0, buffer); 267 rb->lcd_puts(4, 0, buffer);
268} 268}
269 269