- Timestamp:
- 09/11/08 19:44:45 (2 months ago)
- Files:
-
- 1 modified
-
trunk/payloads/libpayload/drivers/video/video.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/payloads/libpayload/drivers/video/video.c
r3520 r3576 52 52 static struct video_console *console; 53 53 54 static unsignedint cursorx;55 static unsignedint cursory;54 static int cursorx; 55 static int cursory; 56 56 static unsigned int cursor_enabled = 1; 57 57 … … 123 123 case '\b': 124 124 cursorx--; 125 if (cursorx < 0) { 126 cursory--; 127 cursorx = VIDEO_COLS; 128 } 125 129 break; 126 130 … … 173 177 174 178 if (console->get_cursor) 175 console->get_cursor( &cursorx,&cursory, &cursor_enabled);179 console->get_cursor((unsigned int*)&cursorx, (unsigned int*)&cursory, &cursor_enabled); 176 180 177 181 if (cursorx) {
