1
0
Fork 0
forked from len0rd/rockbox

Fix yellow H1x0 simulator builds.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8846 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2006-02-26 13:58:06 +00:00
parent 6a972e0249
commit 4b9fbd1687

View file

@ -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);
}