tr2/decomp: fix very loud default music volume

Resolves #1614.
This commit is contained in:
Marcin Kurczewski 2024-10-04 23:57:43 +02:00
parent 11ab6efc00
commit 69126ad252
No known key found for this signature in database
GPG key ID: CC65E6FD28CAE42A
2 changed files with 2 additions and 1 deletions

View file

@ -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)
- improved vertex movement when looking through water portals (#1493)
## [0.3](https://github.com/LostArtefacts/TR2X/compare/0.2...0.3) - 2024-09-20

View file

@ -3010,7 +3010,7 @@ void __cdecl S_LoadSettings(void)
{
DWORD tmp;
GetRegistryDwordValue("MusicVolume", &tmp, 165);
GetRegistryDwordValue("MusicVolume", &tmp, 7);
g_OptionMusicVolume = tmp;
}