From e92aa20b58c61dd698445387619ff996dcdf0888 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Sun, 23 Nov 2025 22:26:11 -0600 Subject: [PATCH] feat(sound): stub SESound::Load --- src/sound/SESound.cpp | 6 ++++++ src/sound/SESound.hpp | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/sound/SESound.cpp b/src/sound/SESound.cpp index 7b1b4c3..8932e9b 100644 --- a/src/sound/SESound.cpp +++ b/src/sound/SESound.cpp @@ -163,3 +163,9 @@ void SESound::Init(int32_t maxChannels, int32_t* a2, int32_t enableReverb, int32 void SESound::Log_Write(int32_t line, const char* file, FMOD_RESULT result, const char* fmt, ...) { // TODO } + +int32_t SESound::Load(const char* filename, int32_t a3, FMOD::SoundGroup* soundGroup1, FMOD::SoundGroup* soundGroup2, bool a6, bool a7, uint32_t a8, int32_t a9, uint32_t a10) { + // TODO + + return 0; +} diff --git a/src/sound/SESound.hpp b/src/sound/SESound.hpp index 6458dff..9da30b6 100644 --- a/src/sound/SESound.hpp +++ b/src/sound/SESound.hpp @@ -20,7 +20,7 @@ class SESound { SESoundInternal* m_internal = nullptr; // Member functions - // TODO + int32_t Load(const char* filename, int32_t a3, FMOD::SoundGroup* soundGroup1, FMOD::SoundGroup* soundGroup2, bool a6, bool a7, uint32_t a8, int32_t a9, uint32_t a10); }; #endif