From 2e2578c26ca79397b5e83f233f925f425214ba1d Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Sat, 13 Aug 2011 15:08:50 -0400 Subject: [PATCH] Also print last frame --- termemu.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/termemu.cpp b/termemu.cpp index bdddc6d..d3d9eca 100644 --- a/termemu.cpp +++ b/termemu.cpp @@ -266,10 +266,8 @@ void emulate_terminal( int fd ) } } - /* XXX last frame - std::string update = terminal.new_frame(); + std::string update = display.new_frame( true, state, terminal.get_fb() ); swrite( STDOUT_FILENO, update.c_str() ); - */ swrite( STDOUT_FILENO, terminal.close().c_str() ); }