Fix SoundEngine on Windows (again)

This commit is contained in:
ZeldaZach 2025-01-11 00:19:00 -05:00
parent 503985a080
commit 7db9c9115e
No known key found for this signature in database

View file

@ -12,7 +12,7 @@
#define DEFAULT_THEME_NAME "Default"
#define TEST_SOUND_FILENAME "player_join"
SoundEngine::SoundEngine(QObject *parent) : QObject(parent), player(nullptr), audioOutput(nullptr)
SoundEngine::SoundEngine(QObject *parent) : QObject(parent), audioOutput(nullptr), player(nullptr)
{
ensureThemeDirectoryExists();
connect(&SettingsCache::instance(), &SettingsCache::soundThemeChanged, this, &SoundEngine::themeChangedSlot);