Fix typo in cursor visibility

This commit is contained in:
Keith Winstein
2011-02-05 03:19:31 -05:00
parent a54cc9d0c4
commit eda2300a94
+2 -2
View File
@@ -137,9 +137,9 @@ std::string Display::new_frame( Framebuffer &f )
if ( (!initialized)
|| (f.ds.cursor_visible != last_frame.ds.cursor_visible) ) {
if ( f.ds.cursor_visible ) {
screen.append( "\033[25h" );
screen.append( "\033[?25h" );
} else {
screen.append( "\033[25l" );
screen.append( "\033[?25l" );
}
}