aboutsummaryrefslogtreecommitdiff
path: root/src/aosfxplayer.cpp
diff options
context:
space:
mode:
authorRose Witchaven <32779090+in1tiate@users.noreply.github.com>2021-06-18 23:58:46 -0500
committerGitHub <noreply@github.com>2021-06-18 23:58:46 -0500
commit5190490a07f929aef3ee0198f5bce251ff28dbea (patch)
treee1ceff14a88e183f203009fbc549049480a61aec /src/aosfxplayer.cpp
parent65f812cf7331acb5d5d1f1dfbac4bc99fd0aed04 (diff)
Set BASS_CONFIG_DEV_DEFAULT to 1 to enable automatic reinitialization of the default device when it is lost (#564)
fixes #561
Diffstat (limited to 'src/aosfxplayer.cpp')
-rw-r--r--src/aosfxplayer.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/aosfxplayer.cpp b/src/aosfxplayer.cpp
index 000b6a7e..fcdeb949 100644
--- a/src/aosfxplayer.cpp
+++ b/src/aosfxplayer.cpp
@@ -47,12 +47,6 @@ void AOSfxPlayer::play(QString p_sfx, QString p_character, QString p_misc)
set_volume_internal(m_volume);
BASS_ChannelSetDevice(m_stream_list[m_channel], BASS_GetDevice());
- int f_bass_error = BASS_ErrorGetCode();
- if (f_bass_error == BASS_ERROR_DEVICE) {
- ao_app->doBASSreset();
- BASS_ChannelSetDevice(m_stream_list[m_channel], BASS_GetDevice());
- }
-
BASS_ChannelPlay(m_stream_list[m_channel], false);
BASS_ChannelSetSync(m_stream_list[m_channel], BASS_SYNC_DEV_FAIL, 0,
ao_app->BASSreset, 0);