Changeset 337 for trunk/src


Ignore:
Timestamp:
09/22/14 20:01:07 (11 years ago)
Author:
epyon
Message:
  • fix to curses terminal not displaying high color properly
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/curses/curses_terminal.cc

    r323 r337  
    5858        if ( color > 7 )
    5959        {
    60                 attrset((static_cast<uint32>(color-7) << 24)  & ( 0xff000000ul | 0x00800000ul ) );
     60                attrset(((static_cast<uint32>(color-7) << 24)  & 0xff000000ul ) | 0x00800000ul);
    6161        }
    6262        else
Note: See TracChangeset for help on using the changeset viewer.