Skip to content

Commit

Permalink
Set default volume to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devinroth committed Nov 30, 2019
1 parent 042c2c8 commit ada5cff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BlackHole/BlackHole.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ static bool gStream_Output_IsActive = true;

static const Float32 kVolume_MinDB = -96.0;
static const Float32 kVolume_MaxDB = 0.0;
static Float32 gVolume_Input_Master_Value = 0.0;
static Float32 gVolume_Output_Master_Value = 0.0;
static Float32 gVolume_Input_Master_Value = 1.0;
static Float32 gVolume_Output_Master_Value = 1.0;

static bool gMute_Input_Master_Value = false;
static bool gMute_Output_Master_Value = false;
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.2.5] - 2019-11-29
### Changed
- Set default volume to 1.0

## [0.2.4] - 2019-11-28
### Added
Expand Down

0 comments on commit ada5cff

Please sign in to comment.