Commit e6cfc171 authored by Rafaël Carré's avatar Rafaël Carré

ncurses: if (a || (!a && b)) -> if (a || b)

parent 035fd1fb
...@@ -1017,8 +1017,7 @@ static int DrawPlaylist(intf_thread_t *p_intf) ...@@ -1017,8 +1017,7 @@ static int DrawPlaylist(intf_thread_t *p_intf)
(!p_node && p_input2 && p_current_item && (!p_node && p_input2 && p_current_item &&
p_item->p_input == p_current_item->p_input)) p_item->p_input == p_current_item->p_input))
c = '*'; c = '*';
else if (p_item == p_node || (p_item != p_node && else if (p_item == p_node || PlaylistIsPlaying(p_playlist, p_item))
PlaylistIsPlaying(p_playlist, p_item)))
c = '>'; c = '>';
PL_UNLOCK; PL_UNLOCK;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment