mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
fix(sound): correct flag check in SI2::PlaySoundKit
This commit is contained in:
parent
703b865237
commit
9f47aea413
@ -345,7 +345,7 @@ int32_t SI2::PlaySoundKit(int32_t id, int32_t a2, SOUNDKITOBJECT* object, SoundK
|
|||||||
soundKitDef->flags &= ~0x20u;
|
soundKitDef->flags &= ~0x20u;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(soundKitDef->flags & 0x20) /* TODO || !dword_B4A394 */) {
|
if ((soundKitDef->flags & 0x20) && false /* TODO dword_B4A394 */) {
|
||||||
// TODO
|
// TODO
|
||||||
|
|
||||||
return 15;
|
return 15;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user