Ignore:
Timestamp:
03/08/16 08:05:51 (9 years ago)
Author:
epyon
Message:
 
File:
1 edited

Legend:

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

    r406 r487  
    5353}
    5454
    55 void curses_terminal::print( position p, uint32 color, unsigned char ch )
     55void curses_terminal::print( position p, uint32 color, char ch )
    5656{
    5757        m_update_needed = true;
     
    6464                attrset((static_cast<uint32>(color+1) << 24)  & 0xff000000ul);
    6565        }
    66         mvaddch( p.y-1, p.x-1, ch );
     66        mvaddch( p.y-1, p.x-1, chtype(ch) );
    6767        ::move( m_cursor.y-1, m_cursor.x-1 );
    6868}
Note: See TracChangeset for help on using the changeset viewer.