diff options
author | Max Kellermann <max@duempel.org> | 2008-10-03 14:28:49 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-03 14:28:49 +0200 |
commit | 66f34ee6b418742d44f38ec3bdec5a8ea541bfcc (patch) | |
tree | 825976289312f2e716710d613ce1fd8bdc54367d /src/screen.h | |
parent | 0ae851aa39de5dfdf6b97c3e774aa322c820f410 (diff) | |
download | mpd-66f34ee6b418742d44f38ec3bdec5a8ea541bfcc.tar.gz mpd-66f34ee6b418742d44f38ec3bdec5a8ea541bfcc.tar.xz mpd-66f34ee6b418742d44f38ec3bdec5a8ea541bfcc.zip |
screen: removed "painted" flag
Repaint immediately instead of setting "painted=0".
Diffstat (limited to 'src/screen.h')
-rw-r--r-- | src/screen.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/screen.h b/src/screen.h index 6d2645702..4ad376ba8 100644 --- a/src/screen.h +++ b/src/screen.h @@ -38,8 +38,6 @@ typedef struct screen { char *findbuf; GList *find_history; - - int painted; } screen_t; extern const struct screen_functions screen_playlist; @@ -72,7 +70,7 @@ typedef struct screen_functions { void screen_init(mpdclient_t *c); void screen_exit(void); -void screen_resize(void); +void screen_resize(struct mpdclient *c); void screen_status_message(const char *msg); void screen_status_printf(const char *format, ...); char *screen_error(void); |