From 08252cc9911a347ed4da04d6a3270c70fe005e4e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 20 Mar 2017 12:34:00 +0100 Subject: [PATCH] screen: remove unnecessary doupdate() call from screen_init() main() will call screen_paint() before entering the main loop, so this saves a few bytes of stdout transfer. --- src/screen.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/screen.c b/src/screen.c index 6f1ac95..9ea6f91 100644 --- a/src/screen.c +++ b/src/screen.c @@ -319,8 +319,6 @@ screen_init(struct mpdclient *c) } #endif - doupdate(); - /* initialize screens */ screen_list_init(screen.main_window.w, screen.main_window.cols, screen.main_window.rows); -- 2.30.2