summaryrefslogtreecommitdiff
path: root/src/surface/kolibri.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/surface/kolibri.c')
-rw-r--r--src/surface/kolibri.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/surface/kolibri.c b/src/surface/kolibri.c
index 3d0fcc1..f39fc44 100644
--- a/src/surface/kolibri.c
+++ b/src/surface/kolibri.c
@@ -152,7 +152,7 @@ unsigned kolibri_scancodes(void)
void kolibri_redraw(nsfb_t *nsfb)
{
- f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels + 1);
+ f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels);
}
unsigned kolibri_skin_get_height(void)
@@ -181,7 +181,7 @@ void kolibri_fb_redraw(nsfb_t *nsfb)
debug_board_write_str("f65 is mighty with 32 bpp!\n");
/* Here put image pixels! it's 32bpp */
- f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels + 1);
+ f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels);
kolibri_window_redraw(2);
}