mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
This commit is contained in:
@@ -42,6 +42,7 @@
|
||||
- Fix: [#18911] Mini Golf station does not draw correctly from all angles.
|
||||
- Fix: [#18971] New Game does not prompt for save before quitting.
|
||||
- Fix: [#18986] [Plugin] Sending remote scripts larger than 63KiB crashing all clients.
|
||||
- Fix: [#18994] Title music doesn’t start after enabling master volume.
|
||||
- Fix: [#19025] Park loan behaves inconsistently with non-round and out-of-bounds values.
|
||||
- Fix: [#19026] Park loan is clamped to a 32-bit integer.
|
||||
- Fix: [#19068] Guests may not join queues correctly.
|
||||
|
||||
@@ -398,11 +398,9 @@ namespace OpenRCT2::Audio
|
||||
if (gConfigSound.MasterSoundEnabled)
|
||||
{
|
||||
Resume();
|
||||
PlayTitleMusic();
|
||||
}
|
||||
else
|
||||
{
|
||||
StopTitleMusic();
|
||||
Pause();
|
||||
}
|
||||
|
||||
@@ -416,11 +414,13 @@ namespace OpenRCT2::Audio
|
||||
RideAudio::StopAllChannels();
|
||||
PeepStopCrowdNoise();
|
||||
ClimateStopWeatherSound();
|
||||
StopTitleMusic();
|
||||
}
|
||||
|
||||
void Resume()
|
||||
{
|
||||
gGameSoundsOff = false;
|
||||
PlayTitleMusic();
|
||||
}
|
||||
|
||||
void StopVehicleSounds()
|
||||
|
||||
Reference in New Issue
Block a user