diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2018-07-05 21:33:27 -0500 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2018-07-05 21:33:27 -0500 |
| commit | 064cde6759aa1264cbd00d7c052aaf1a223af7a9 (patch) | |
| tree | 9dcad680bed3ab139dfa334276198cad0e45ce0d /aoblipplayer.cpp | |
| parent | 17601c3723a181e348e37eddcc04bf506165cb72 (diff) | |
| parent | 42e26d67756afc2cb8cdeb97ed654507c7cf4f3e (diff) | |
Merge branch 'discord-toggle'
Diffstat (limited to 'aoblipplayer.cpp')
| -rw-r--r-- | aoblipplayer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/aoblipplayer.cpp b/aoblipplayer.cpp index 726c73f8..9e7d0e5d 100644 --- a/aoblipplayer.cpp +++ b/aoblipplayer.cpp @@ -10,7 +10,7 @@ void AOBlipPlayer::set_blips(QString p_sfx) { QString f_path = ao_app->get_sounds_path() + p_sfx.toLower(); - for (int n_stream = 0 ; n_stream < 5 ; ++n_stream) + for (int n_stream = 0 ; n_stream < BLIP_COUNT ; ++n_stream) { BASS_StreamFree(m_stream_list[n_stream]); @@ -24,7 +24,7 @@ void AOBlipPlayer::blip_tick() { int f_cycle = m_cycle++; - if (m_cycle == 5) + if (m_cycle == BLIP_COUNT) m_cycle = 0; HSTREAM f_stream = m_stream_list[f_cycle]; @@ -38,7 +38,7 @@ void AOBlipPlayer::set_volume(int p_value) float volume = p_value / 100.0f; - for (int n_stream = 0 ; n_stream < 5 ; ++n_stream) + for (int n_stream = 0 ; n_stream < BLIP_COUNT ; ++n_stream) { BASS_ChannelSetAttribute(m_stream_list[n_stream], BASS_ATTRIB_VOL, volume); } |
