1
0
Fork 0
forked from len0rd/rockbox

Do not use lcd_blit_yuv() if MEMORYSIZE <= 2, since mpegplayer won't run anyway (and won't build)

Only affected target: Sansa c200v2

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21453 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2009-06-21 14:09:48 +00:00
parent 04451b4369
commit a98c54f5f1
5 changed files with 16 additions and 16 deletions

View file

@ -132,7 +132,7 @@ static void time_main_update(void)
log_text(str);
}
#ifdef HAVE_LCD_COLOR
#if defined(HAVE_LCD_COLOR) && (MEMORYSIZE > 2)
#if LCD_WIDTH >= LCD_HEIGHT
#define YUV_WIDTH LCD_WIDTH
@ -353,7 +353,7 @@ enum plugin_status plugin_start(const void* parameter)
log_text("Main LCD Update");
time_main_update();
#ifdef HAVE_LCD_COLOR
#if defined(HAVE_LCD_COLOR) && (MEMORYSIZE > 2)
log_text("Main LCD YUV");
time_main_yuv();
#endif