summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-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 18fdcad..882c1cd 100644
--- a/apps/plugins/pong.c
+++ b/apps/plugins/pong.c
@@ -263,7 +263,7 @@ void showscore(struct pong *p)
{
static char buffer[20];
- snprintf(buffer, 20, "%d - %d", p->score[0], p->score[1]);
+ rb->snprintf(buffer, 20, "%d - %d", p->score[0], p->score[1]);
rb->lcd_puts(4, 0, buffer);
}