Skip to content

Commit

Permalink
fix: reduce volume and overmodulation of main theme (#4298)
Browse files Browse the repository at this point in the history
* fix: reduce volume and overmodulation of main theme
* feat: use 0.5 as default music volume
* chore: remove deprecated audio settings from default.cfg
* fix: use lower quality level to reduce file size
  • Loading branch information
jdrueckert authored Dec 4, 2020
1 parent d8f3a20 commit 676c1ce
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class AudioConfig extends AutoConfig {
public final Setting<Float> musicVolume =
setting(
type(Float.class),
defaultValue(1.0f),
defaultValue(0.5f),
constraint(new NumberRangeConstraint<>(0.0f, 1.0f, true, true))
);

Expand Down
Binary file modified engine/src/main/resources/assets/music/MenuTheme.ogg
Binary file not shown.
5 changes: 0 additions & 5 deletions engine/src/main/resources/default.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@
"mouseSensitivity": 0.25,
"mouseYAxisInverted": false
},
"audio": {
"soundVolume": 1.0,
"musicVolume": 0.1,
"disableSound": false
},
"rendering": {
"pixelFormat": 24,
"windowPosX": 379,
Expand Down

0 comments on commit 676c1ce

Please sign in to comment.