1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Fix: Log Flume lift sound does not loop

This commit is contained in:
Michael Steenbeek
2025-10-01 20:34:06 +02:00
committed by GitHub
parent 4029254263
commit d746da1d9a
2 changed files with 2 additions and 0 deletions

View File

@@ -26,6 +26,7 @@
- Fix: [#25201] Ride list sort order can be unstable when sorted in descending order. - Fix: [#25201] Ride list sort order can be unstable when sorted in descending order.
- Fix: [#25207] Building a block brake on an LIM coaster does not automatically switch it to powered launch block sectioned mode. - Fix: [#25207] Building a block brake on an LIM coaster does not automatically switch it to powered launch block sectioned mode.
- Fix: [#25238] The chance of thunder and lightning effects happening is lower than vanilla. - Fix: [#25238] The chance of thunder and lightning effects happening is lower than vanilla.
- Fix: [#25288] Water ride “chain” sound does not loop.
0.4.26 (2025-09-06) 0.4.26 (2025-09-06)
------------------------------------------------------------------------ ------------------------------------------------------------------------

View File

@@ -392,6 +392,7 @@ namespace OpenRCT2::Audio
case SoundId::TrackFrictionBM: case SoundId::TrackFrictionBM:
case SoundId::LiftRMC: case SoundId::LiftRMC:
case SoundId::TrackFrictionRMC: case SoundId::TrackFrictionRMC:
case SoundId::LiftFlume:
return true; return true;
default: default:
return false; return false;