1
0
Fork 0
forked from len0rd/rockbox

fixed lcd_blit for the (x11) sim

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4148 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2003-12-15 10:25:51 +00:00
parent c4e1bdf016
commit 41cfe303a6
2 changed files with 23 additions and 6 deletions

View file

@ -29,3 +29,15 @@
#else
#include "lcd-x11.h"
#endif
void lcd_blit(unsigned char* p_data, int x, int y, int width, int height,
int stride)
{
(void)p_data;
(void)x;
(void)y;
(void)width;
(void)height;
(void)stride;
}