diff options
author | Max Kellermann <max@duempel.org> | 2008-09-25 21:20:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-25 21:20:10 +0200 |
commit | 3809e2f13bb6642d3a874c24df7d854aa0aea8b5 (patch) | |
tree | 3acd44e438c1403bea51e0009d4c6c41a7a35f7d /src/screen.c | |
parent | 76270589b0b32e703c5d4854b859214215585e0a (diff) | |
download | mpd-3809e2f13bb6642d3a874c24df7d854aa0aea8b5.tar.gz mpd-3809e2f13bb6642d3a874c24df7d854aa0aea8b5.tar.xz mpd-3809e2f13bb6642d3a874c24df7d854aa0aea8b5.zip |
screen: replaced get_cur_mode_id() with screen_is_visible()
Screen code shouldn't know anything about the screen ids (which will
be eliminated completely later). Instead of comparing ids, compare
the screen_functions pointer.
Diffstat (limited to '')
-rw-r--r-- | src/screen.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/screen.c b/src/screen.c index cea637a8d..02df03b52 100644 --- a/src/screen.c +++ b/src/screen.c @@ -47,9 +47,10 @@ static const struct screen_functions *mode_fn = &screen_playlist; static int seek_id = -1; static int seek_target_time = 0; -gint get_cur_mode_id(void) +gboolean +screen_is_visible(const struct screen_functions *sf) { - return screen_get_id_by_index(screen.mode); + return sf == mode_fn; } static void |