Skip to content

Commit

Permalink
tr2/decomp: fix very loud default music volume
Browse files Browse the repository at this point in the history
Resolves #1614.
  • Loading branch information
rr- committed Oct 4, 2024
1 parent ef0b20e commit ff1bdf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/tr2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- fixed using console in cutscenes immediately exiting the game (regression from 0.3)
- fixed Lara remaining tilted when teleporting off a vehicle while on a slope (LostArtefacts/TR2X#275, regression from 0.3)
- fixed `/endlevel` displaying a success message in the title screen
- fixed very loud music volume set by default (#1614)

## [0.3](https://github.com/LostArtefacts/TR2X/compare/0.2...0.3) - 2024-09-20
- added new console commands:
Expand Down
2 changes: 1 addition & 1 deletion src/tr2/decomp/decomp.c
Original file line number Diff line number Diff line change
Expand Up @@ -3010,7 +3010,7 @@ void __cdecl S_LoadSettings(void)

{
DWORD tmp;
GetRegistryDwordValue("MusicVolume", &tmp, 165);
GetRegistryDwordValue("MusicVolume", &tmp, 7);
g_OptionMusicVolume = tmp;
}

Expand Down

0 comments on commit ff1bdf0

Please sign in to comment.