From 40730d26b8faaa3439a29140e29ed2b6c626be7b Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 14 Aug 2021 10:40:38 +0200 Subject: [PATCH] - Exhumed: fixed incorrect CD tracks being played through cutscenes --- wadsrc/static/zscript/games/exhumed/ui/screens.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/games/exhumed/ui/screens.zs b/wadsrc/static/zscript/games/exhumed/ui/screens.zs index e5fae5ed1..f02978c97 100644 --- a/wadsrc/static/zscript/games/exhumed/ui/screens.zs +++ b/wadsrc/static/zscript/games/exhumed/ui/screens.zs @@ -481,7 +481,7 @@ class Cinema : SkippableScreenJob System.StopAllSounds(); if (cdtrack != -1) { - Exhumed.playCDtrack(cdtrack, false); + Exhumed.playCDtrack(cdtrack+2, false); } }