Commit 4210120a authored by Erwan Tulou's avatar Erwan Tulou

skins2: fix equalizer

Recent change in core(audio) now requires playlist to be passed as object
so that findAout can success (based on "find-input-callback" inheritance)
parent 066bcd24
......@@ -30,7 +30,9 @@
void CmdSetEqualizer::execute()
{
aout_EnableFilter( getIntf(), "equalizer", m_enable );
playlist_t* pPlaylist = getIntf()->p_sys->p_playlist;
aout_EnableFilter( pPlaylist, "equalizer", m_enable );
VlcProc::instance( getIntf() )->update_equalizer();
}
......
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