Commit 4a65401d authored by Sebastien Zwickert's avatar Sebastien Zwickert Committed by Jean-Baptiste Kempf

gui/macosx: fixes equalizer issue #3718.

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent d9a02c44
...@@ -98,7 +98,7 @@ static void ChangeFiltersString( intf_thread_t *p_intf, ...@@ -98,7 +98,7 @@ static void ChangeFiltersString( intf_thread_t *p_intf,
} }
} }
aout_EnableFilter( p_object, psz_string, false); aout_EnableFilter( pl_Get( p_intf ), psz_string, b_add);
if( (BOOL)config_GetInt( p_object, "macosx-eq-keep" ) == YES ) if( (BOOL)config_GetInt( p_object, "macosx-eq-keep" ) == YES )
{ {
......
...@@ -733,7 +733,7 @@ static VLCExtended *_o_sharedInstance = nil; ...@@ -733,7 +733,7 @@ static VLCExtended *_o_sharedInstance = nil;
} }
else else
{ {
aout_EnableFilter( p_aout, psz_string, false ); aout_EnableFilter( pl_Get( p_intf ), psz_string, b_add );
} }
free( psz_string ); free( psz_string );
......
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