summaryrefslogtreecommitdiff
path: root/apps/plugins/bounce.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/bounce.c')
-rw-r--r--apps/plugins/bounce.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/bounce.c b/apps/plugins/bounce.c
index 98dcd5ff66..676d8fe169 100644
--- a/apps/plugins/bounce.c
+++ b/apps/plugins/bounce.c
@@ -309,8 +309,8 @@ static int scrollit(void)
309 for(i=0, yy=y, xx=x; i< LETTERS_ON_SCREEN; i++) { 309 for(i=0, yy=y, xx=x; i< LETTERS_ON_SCREEN; i++) {
310 letter = rock[(i+textpos) % rocklen ]; 310 letter = rock[(i+textpos) % rocklen ];
311 311
312 rb->lcd_bitmap((char *)char_gen_12x16[letter-0x20], 312 rb->lcd_mono_bitmap((char *)char_gen_12x16[letter-0x20],
313 xx, table[yy&(TABLE_SIZE-1)], 11, 16); 313 xx, table[yy&(TABLE_SIZE-1)], 11, 16);
314 yy += YADD; 314 yy += YADD;
315 xx+= LCD_WIDTH/LETTERS_ON_SCREEN; 315 xx+= LCD_WIDTH/LETTERS_ON_SCREEN;
316 } 316 }
@@ -399,9 +399,9 @@ static int loopit(void)
399 for(i=0, yy=y, xx=x; 399 for(i=0, yy=y, xx=x;
400 i<rocklen; 400 i<rocklen;
401 i++, yy+=values[NUM_YDIST].num, xx+=values[NUM_XDIST].num) 401 i++, yy+=values[NUM_YDIST].num, xx+=values[NUM_XDIST].num)
402 rb->lcd_bitmap((char *)char_gen_12x16[rock[i]-0x20], 402 rb->lcd_mono_bitmap((char *)char_gen_12x16[rock[i]-0x20],
403 xtable[xx&(TABLE_SIZE-1)], table[yy&(TABLE_SIZE-1)], 403 xtable[xx&(TABLE_SIZE-1)],
404 11, 16); 404 table[yy&(TABLE_SIZE-1)], 11, 16);
405 rb->lcd_update(); 405 rb->lcd_update();
406 rb->lcd_set_drawmode(DRMODE_SOLID); 406 rb->lcd_set_drawmode(DRMODE_SOLID);
407 407