Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Rossmaxx committed Sep 26, 2024
1 parent 63006e9 commit e8ad49e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/AudioEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ void AudioEngine::removePlayHandle(PlayHandle* ph)
bool removedFromList = false;
// Check m_newPlayHandles first because doing it the other way around
// creates a race condition
for (auto e = m_newPlayHandles.first(), *ePrev = nullptr; e; ePrev = e, e = e->next)
for (auto e = m_newPlayHandles.first(); *ePrev = nullptr; e; ePrev = e, e = e->next)
{
if (e->value == ph)
{
Expand Down

0 comments on commit e8ad49e

Please sign in to comment.