1
0
Fork 0
forked from len0rd/rockbox

The blit functions shouldn't exist for the simulator.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16777 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2008-03-24 01:00:42 +00:00
parent c84e345e6e
commit b88c7d076d
3 changed files with 2 additions and 13 deletions

View file

@ -24,17 +24,6 @@
#include "lcd.h"
#include "lcd-sdl.h"
void lcd_blit_mono(const unsigned char *data, int x, int y, int width, int height,
int stride)
{
(void)data;
(void)x;
(void)y;
(void)width;
(void)height;
(void)stride;
}
void lcd_set_flip(bool yesno)
{
(void)yesno;