From 4b9fbd168713e572f9a73a7bacaa850e8c961994 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sun, 26 Feb 2006 13:58:06 +0000 Subject: Fix yellow H1x0 simulator builds. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8846 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/sdl/lcd-remote.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uisimulator/sdl/lcd-remote.c b/uisimulator/sdl/lcd-remote.c index f1d04b33f8..7231b50aea 100644 --- a/uisimulator/sdl/lcd-remote.c +++ b/uisimulator/sdl/lcd-remote.c @@ -29,7 +29,7 @@ SDL_Color remote_color_max = {0, 0, 0, 0}; extern unsigned char lcd_remote_framebuffer[LCD_REMOTE_HEIGHT/8][LCD_REMOTE_WIDTH]; -static inline Uint32 get_lcd_remote_pixel(int x, int y) { +static unsigned long get_lcd_remote_pixel(int x, int y) { return ((lcd_remote_framebuffer[y/8][x] >> (y & 7)) & 1); } -- cgit v1.2.3