summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/playergfx.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/playergfx.c')
-rw-r--r--apps/plugins/lib/playergfx.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/lib/playergfx.c b/apps/plugins/lib/playergfx.c
index b6e7ccfc64..1df7a3be4c 100644
--- a/apps/plugins/lib/playergfx.c
+++ b/apps/plugins/lib/playergfx.c
@@ -85,6 +85,12 @@ void pgfx_display(int cx, int cy)
85 pgfx_rb->lcd_putc(cx + i, cy + j, gfx_chars[char_height * i + j]); 85 pgfx_rb->lcd_putc(cx + i, cy + j, gfx_chars[char_height * i + j]);
86} 86}
87 87
88void pgfx_display_block(int cx, int cy, int x, int y)
89{
90 pgfx_rb->lcd_putc(cx, cy, gfx_chars[char_height * x + y]);
91}
92
93
88/*** Update functions ***/ 94/*** Update functions ***/
89 95
90void pgfx_update(void) 96void pgfx_update(void)