Skip to content

Commit

Permalink
fix: broken call to volume getter
Browse files Browse the repository at this point in the history
  • Loading branch information
tillt committed Dec 27, 2023
1 parent ba5d25d commit f60c15c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KompleteSynthesia/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ - (void)reset:(id)sender

- (void)updateVolume:(id)sender
{
_videoController.volumeValue.stringValue = [NSString stringWithFormat:@"%f", [[self class] volume]];
_videoController.volumeValue.stringValue = [NSString stringWithFormat:@"%f", [CoreAudioTools volume]];
[_videoController showOSD];
}

Expand Down

0 comments on commit f60c15c

Please sign in to comment.