Mercurial > audlegacy
diff src/audacious/input.c @ 2437:62d8f9c05832 trunk
[svn] More input plugin API work
| author | iabervon |
|---|---|
| date | Sun, 28 Jan 2007 21:08:08 -0800 |
| parents | f346d30bf5ab |
| children | f2b3d6428b67 |
line wrap: on
line diff
--- a/src/audacious/input.c Sun Jan 28 17:02:15 2007 -0800 +++ b/src/audacious/input.c Sun Jan 28 21:08:08 2007 -0800 @@ -750,9 +750,9 @@ { if (playback_get_playing()) { if (get_current_input_playback() && - get_current_input_playback()->plugin->set_volume) { - get_current_input_playback()->plugin->set_volume(l, r); - return; + get_current_input_playback()->plugin->set_volume && + get_current_input_playback()->plugin->set_volume(l, r)) { + return; } } output_set_volume(l, r);
