Removed some needless comments.

This commit is contained in:
2014-03-02 14:56:23 -04:30
parent 488647e0de
commit 3e91d797bb

View File

@@ -108,6 +108,7 @@ int main() {
do{
clear_screen();
/* Handle terminal resize. */
if(resize){
endwin();
refresh();
@@ -184,17 +185,6 @@ void manage_signal(int signal){
}
void on_resize(int signal){
/*struct winsize ws;*/
/* Request the new size of the terminal. */
/*ioctl(1, TIOCGWINSZ, &ws);*/
/* Resize ncurses's stdscr. */
/*resizeterm(ws.ws_row, ws.ws_col);*/
/* Get the new size of the window. */
/*getmaxyx(stdscr, h, w);*/
resize = 1;
}