*in progress*
[winnie] / src / event.cc
index 45eed6e..a54fe7a 100644 (file)
@@ -28,11 +28,10 @@ void process_events()
                while(select(maxfd + 1, &read_set, 0, 0, 0) == -1 && errno == EINTR);
 
                if(FD_ISSET(keyb_fd, &read_set)) {
-                       printf("WINNIE TODO PROCESS KEYB\n");
                        process_keyboard_event();
                }
-/*             if(FD_ISSET(mouse_fd, &read_set)) {
+               if(FD_ISSET(mouse_fd, &read_set)) {
                        process_mouse_event();
-               }*/
+               }
        }
 }