1
0
Fork 0
forked from len0rd/rockbox

Fix more reds.

Change-Id: Ie62386a8f3e9986381f96eb83abb69bfc42b42e1
This commit is contained in:
Thomas Martitz 2013-12-15 00:47:21 +01:00
parent c72b454286
commit ed5b853c18
3 changed files with 3 additions and 2 deletions

View file

@ -575,6 +575,7 @@ bool set_time_screen(const char* title, struct tm *tm)
#endif /* defined(HAVE_LCD_BITMAP) && (CONFIG_RTC != 0) */ #endif /* defined(HAVE_LCD_BITMAP) && (CONFIG_RTC != 0) */
#if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF) #if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF)
#include "scroll_engine.h"
bool shutdown_screen(void) bool shutdown_screen(void)
{ {
int button; int button;

View file

@ -385,7 +385,7 @@ void lcd_clear_viewport(void)
current_vp->drawmode = lastmode; current_vp->drawmode = lastmode;
lcd_scroll_stop(current_vp); lcd_scroll_stop_viewport(current_vp);
} }
} }

View file

@ -413,7 +413,7 @@ void LCDFN(clear_viewport)(void)
current_vp->drawmode = lastmode; current_vp->drawmode = lastmode;
LCDFN(scroll_stop)(current_vp); LCDFN(scroll_stop_viewport)(current_vp);
} }
} }