Commit a4edb867 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx/CoreInteraction: communicate volume value correctly to the core

parent 3be00fa5
...@@ -519,7 +519,9 @@ static VLCCoreInteraction *_o_sharedInstance = nil; ...@@ -519,7 +519,9 @@ static VLCCoreInteraction *_o_sharedInstance = nil;
if (!p_intf) if (!p_intf)
return; return;
playlist_VolumeSet(pl_Get(p_intf), i_value / (float)AOUT_VOLUME_DEFAULT); float f_value = i_value / (float)AOUT_VOLUME_DEFAULT;
playlist_VolumeSet(pl_Get(p_intf), f_value);
} }
#pragma mark - #pragma mark -
......
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