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

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/gui_ascii_renderer.cc

    r444 r487  
    1818        bool   clear;
    1919        bool   border;
    20         uchar8 border_chars[8];
     20        char  border_chars[8];
    2121        uint32 border_color;
    2222        uint32 text_color;
     
    6767                                er->border_color = uint32( border_color );
    6868                        for ( uint32 i = 0; i < 8 && i < path.length(); i++ )
    69                                 er->border_chars[i] = static_cast< uchar8 >( path[i] );
     69                                er->border_chars[i] = path[i];
    7070                }
    7171        }
     
    102102                for ( char c : e->m_text )
    103103                {
    104                         m_terminal->print( p, er->text_color, static_cast< unsigned char >( c ) );
     104                        m_terminal->print( p, er->text_color, c );
    105105                        ++p.x;
    106106                }
Note: See TracChangeset for help on using the changeset viewer.