Changeset 3641 for trunk/payloads
- Timestamp:
- 10/08/08 13:17:25 (3 months ago)
- Files:
-
- 1 modified
-
trunk/payloads/libpayload/curses/tinycurses.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/payloads/libpayload/curses/tinycurses.c
r3611 r3641 737 737 attr_t attr = win->_line[y].text[x].attr; 738 738 739 unsigned int c =740 ((int)color_pairs[PAIR_NUMBER(attr)]) << 8;741 742 739 #ifdef CONFIG_SERIAL_CONSOLE 743 740 if (curses_flags & F_ENABLE_SERIAL) { … … 807 804 #endif 808 805 #ifdef CONFIG_VIDEO_CONSOLE 806 unsigned int c = 807 ((int)color_pairs[PAIR_NUMBER(attr)]) << 8; 808 809 809 c = SWAP_RED_BLUE(c); 810 810
