From 9f47aea41319f4b884d7930548be6820b7f09cd4 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 26 Nov 2025 20:22:39 -0600 Subject: [PATCH] fix(sound): correct flag check in SI2::PlaySoundKit --- src/sound/SI2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound/SI2.cpp b/src/sound/SI2.cpp index ffee27d..de95a55 100644 --- a/src/sound/SI2.cpp +++ b/src/sound/SI2.cpp @@ -345,7 +345,7 @@ int32_t SI2::PlaySoundKit(int32_t id, int32_t a2, SOUNDKITOBJECT* object, SoundK soundKitDef->flags &= ~0x20u; } - if (!(soundKitDef->flags & 0x20) /* TODO || !dword_B4A394 */) { + if ((soundKitDef->flags & 0x20) && false /* TODO dword_B4A394 */) { // TODO return 15;