Subversion Repositories freemyipod

Rev

Rev 293 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 293 Rev 421
Line 42... Line 42...
42
static bool lcdconsole_needs_update;
42
static bool lcdconsole_needs_update;
43
 
43
 
44
void lcdconsole_init()
44
void lcdconsole_init()
45
{
45
{
46
    displaylcd(0, LCD_WIDTH - 1, 0, LCD_HEIGHT - 1, (void*)0xffffffff, 0);
46
    displaylcd(0, LCD_WIDTH - 1, 0, LCD_HEIGHT - 1, (void*)0xffffffff, 0);
47
    memset(framebuf, -1, sizeof(framebuf));
47
    memset(framebuf, LCDCONSOLE_BGCOLOR, sizeof(framebuf));
48
    current_row = 0;
48
    current_row = 0;
49
    current_col = -1;
49
    current_col = -1;
50
    lcdconsole_needs_update = false;
50
    lcdconsole_needs_update = false;
51
}
51
}
52
 
52