aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2021-07-11 03:26:59 +0200
committerwithmorten <morten.with@gmail.com>2021-07-11 03:26:59 +0200
commit58de524d70beff5d917bc9eaf72a0f8d3e18840d (patch)
tree4dda8f8d23b85686baaf166e9b76ae3cf75df893 /src
parent8a114514d9ea61815c2d391bc5edaa69d1648bfe (diff)
tiny diff fix
Diffstat (limited to 'src')
-rw-r--r--src/audio/oal/stream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio/oal/stream.cpp b/src/audio/oal/stream.cpp
index 7fc36acd..3789573e 100644
--- a/src/audio/oal/stream.cpp
+++ b/src/audio/oal/stream.cpp
@@ -1648,7 +1648,7 @@ void CStream::SetPlay(bool state)
{
ALint sourceState = AL_STOPPED;
alGetSourcei(m_pAlSources[0], AL_SOURCE_STATE, &sourceState);
- if (sourceState != AL_STOPPED )
+ if (sourceState != AL_STOPPED)
alSourceStop(m_pAlSources[0]);
sourceState = AL_STOPPED;