summaryrefslogtreecommitdiff
path: root/apps/plugins/zxbox/zxvid_16bpp.c
diff options
context:
space:
mode:
authorMoshe Piekarski <dev.rockbox@melachim.net>2020-10-06 13:34:04 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2020-10-26 12:28:48 -0400
commit12f3ed1699d6bef25bed90ba95cbcc1a6bb4934a (patch)
treecb9850c2c4ea68b7acc816828c4d53dd7c8391f9 /apps/plugins/zxbox/zxvid_16bpp.c
parent5d5f8169b53fc989b456b0f0d7940bcf9415cbeb (diff)
downloadrockbox-12f3ed1699d6bef25bed90ba95cbcc1a6bb4934a.tar.gz
rockbox-12f3ed1699d6bef25bed90ba95cbcc1a6bb4934a.zip
make the plugin API frambuffer agnostic
Change-Id: I5abdc231093054c517ff53b9a456997e440e3f6e
Diffstat (limited to 'apps/plugins/zxbox/zxvid_16bpp.c')
-rw-r--r--apps/plugins/zxbox/zxvid_16bpp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/zxbox/zxvid_16bpp.c b/apps/plugins/zxbox/zxvid_16bpp.c
index 6380d3d7d7..f8482e3147 100644
--- a/apps/plugins/zxbox/zxvid_16bpp.c
+++ b/apps/plugins/zxbox/zxvid_16bpp.c
@@ -58,7 +58,7 @@ void update_screen(void)
58 byte *scrptr; 58 byte *scrptr;
59 scrptr = (byte *) SPNM(image); 59 scrptr = (byte *) SPNM(image);
60 */ 60 */
61 frameb = rb->lcd_framebuffer; 61 frameb = *rb->lcd_framebuffer;
62 for ( y = 0 ; y < HEIGHT*WIDTH; y++ ){ 62 for ( y = 0 ; y < HEIGHT*WIDTH; y++ ){
63 frameb[y] = FB_SCALARPACK(_16bpp_colors[(unsigned)sp_image[y]]); 63 frameb[y] = FB_SCALARPACK(_16bpp_colors[(unsigned)sp_image[y]]);
64 } 64 }
@@ -68,7 +68,7 @@ void update_screen(void)
68 int srcx, srcy=0; /* x / y coordinates in source image */ 68 int srcx, srcy=0; /* x / y coordinates in source image */
69 unsigned char* image; 69 unsigned char* image;
70 image = sp_image + ( (Y_OFF)*(WIDTH) ) + X_OFF; 70 image = sp_image + ( (Y_OFF)*(WIDTH) ) + X_OFF;
71 frameb = rb->lcd_framebuffer; 71 frameb = *rb->lcd_framebuffer;
72 for(y = 0; y < LCD_HEIGHT; y++) 72 for(y = 0; y < LCD_HEIGHT; y++)
73 { 73 {
74 srcx = 0; /* reset our x counter before each row... */ 74 srcx = 0; /* reset our x counter before each row... */