summaryrefslogtreecommitdiffstats
path: root/minui
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--minui/graphics.c2
-rw-r--r--minuitwrp/graphics.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/minui/graphics.c b/minui/graphics.c
index 948a07c0f..3713f61de 100644
--- a/minui/graphics.c
+++ b/minui/graphics.c
@@ -175,7 +175,7 @@ static int get_framebuffer(GGLSurface *fb)
fb->stride = fi.line_length/PIXEL_SIZE;
fb->format = PIXEL_FORMAT;
if (!has_overlay) {
- fb->data = (void*) (((unsigned) bits) + vi.yres * fi.line_length);
+ fb->data = (void*) (((unsigned long) bits) + vi.yres * fi.line_length);
memset(fb->data, 0, vi.yres * fi.line_length);
}
diff --git a/minuitwrp/graphics.c b/minuitwrp/graphics.c
index 9926904ef..d08e74303 100644
--- a/minuitwrp/graphics.c
+++ b/minuitwrp/graphics.c
@@ -300,10 +300,10 @@ static int get_framebuffer(GGLSurface *fb)
fb->height = vi.yres;
#ifdef BOARD_HAS_JANKY_BACKBUFFER
fb->stride = fi.line_length/2;
- fb->data = (void*) (((unsigned) bits) + vi.yres * fi.line_length);
+ fb->data = (GGLubyte*) (((unsigned long) bits) + vi.yres * fi.line_length);
#else
fb->stride = vi.xres_virtual;
- fb->data = (void*) (((unsigned) bits) + vi.yres * fb->stride * PIXEL_SIZE);
+ fb->data = (GGLubyte*) (((unsigned long) bits) + vi.yres * fb->stride * PIXEL_SIZE);
#endif
fb->format = PIXEL_FORMAT;
if (!has_overlay) {