Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1629 → Rev 1630

/uspace/trunk/console/screenbuffer.h
30,8 → 30,8
#define __SCREENBUFFER_H__
 
 
#define DEFAULT_FOREGROUND 0xffff00 /**< default console foreground color */
#define DEFAULT_BACKGROUND 0x000080 /**< default console background color */
#define DEFAULT_FOREGROUND 0x0 /**< default console foreground color */
#define DEFAULT_BACKGROUND 0xf0f0f0 /**< default console background color */
 
typedef struct {
unsigned int bg_color; /**< background color */
/uspace/trunk/console/console.c
243,7 → 243,6
conn = &connections[active_console];
 
set_style(&conn->screenbuffer.style);
curs_goto(conn->screenbuffer.position_y, conn->screenbuffer.position_x);
curs_visibility(0);
if (interbuffer) {
for (i = 0; i < conn->screenbuffer.size_x; i++)
271,6 → 270,7
}
}
curs_goto(conn->screenbuffer.position_y, conn->screenbuffer.position_x);
curs_visibility(conn->screenbuffer.is_cursor_visible);
}