From 253d668222a7ee5fa008a8cb6b319c3b07b9056b Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Wed, 17 Apr 2024 15:19:03 -0400 Subject: [PATCH] - this function still was needed by raze, keep it for now --- src/common/audio/sound/s_soundinternal.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/common/audio/sound/s_soundinternal.h b/src/common/audio/sound/s_soundinternal.h index 9212e997ff..1d007faef1 100644 --- a/src/common/audio/sound/s_soundinternal.h +++ b/src/common/audio/sound/s_soundinternal.h @@ -402,6 +402,12 @@ public: FSoundID PickReplacement(FSoundID refid); void HashSounds(); void AddRandomSound(FSoundID Owner, TArray list); + + TArray& GetSounds() //We still need this for a short time... + { + return S_sfx; + } + };