Changeset 374 for trunk/src/curses
- Timestamp:
- 05/26/15 17:35:06 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/curses/curses_terminal.cc
r369 r374 65 65 } 66 66 mvaddch( p.y-1, p.x-1, ch ); 67 move( m_cursor.y-1, m_cursor.x-1 );67 ::move( m_cursor.y-1, m_cursor.x-1 ); 68 68 } 69 69 … … 80 80 m_update_needed = true; 81 81 ::clear(); 82 move( m_cursor.y-1, m_cursor.x-1 );82 ::move( m_cursor.y-1, m_cursor.x-1 ); 83 83 } 84 84 … … 160 160 { 161 161 terminal::set_cursor( p ); 162 move( m_cursor.y-1, m_cursor.x-1 );162 ::move( m_cursor.y-1, m_cursor.x-1 ); 163 163 } 164 164
Note: See TracChangeset
for help on using the changeset viewer.