Commit eef97c48 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

MacOS: fix equalizer 170Hz issue

Close #4177
parent 1df0fa13
...@@ -230,7 +230,7 @@ static bool GetFiltersStatus( intf_thread_t *p_intf, ...@@ -230,7 +230,7 @@ static bool GetFiltersStatus( intf_thread_t *p_intf,
p_object = vlc_object_hold(pl_Get( p_intf )); p_object = vlc_object_hold(pl_Get( p_intf ));
const char *psz_values; const char *psz_values;
NSString *preset = [NSString stringWithFormat:@"%.1f", [o_slider_band1 floatValue] ]; NSString *preset = [NSString stringWithFormat:@"%.1f ", [o_slider_band1 floatValue] ];
preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band2 floatValue] ]; preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band2 floatValue] ];
preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band3 floatValue] ]; preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band3 floatValue] ];
preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band4 floatValue] ]; preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band4 floatValue] ];
......
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