Skip to content

Commit 486605d

Browse files
committed
fixed a problem in AudioClip that I caused completely intentionally but I thought it was a good thing at the time
1 parent 741625a commit 486605d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Audio/AudioClip.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void AudioClip::play()
6161
if(Mix_Paused(mix_channel))
6262
{
6363
Mix_Resume(mix_channel);
64-
} else if(!Mix_Playing(mix_channel))
64+
} else
6565
{
6666
Mix_PlayChannel(mix_channel, audiodata, 0);
6767
}

0 commit comments

Comments
 (0)