Changeset 487 for trunk/src/gui/gui_ascii_renderer.cc
- Timestamp:
- 03/08/16 08:05:51 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/gui_ascii_renderer.cc
r444 r487 18 18 bool clear; 19 19 bool border; 20 uchar8border_chars[8];20 char border_chars[8]; 21 21 uint32 border_color; 22 22 uint32 text_color; … … 67 67 er->border_color = uint32( border_color ); 68 68 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]; 70 70 } 71 71 } … … 102 102 for ( char c : e->m_text ) 103 103 { 104 m_terminal->print( p, er->text_color, static_cast< unsigned char >( c ));104 m_terminal->print( p, er->text_color, c ); 105 105 ++p.x; 106 106 }
Note: See TracChangeset
for help on using the changeset viewer.