From 3c413a293b7edea05a200c863b253d9f7592bc50 Mon Sep 17 00:00:00 2001 From: rcoaxil Date: Wed, 19 Oct 2016 05:13:30 +0300 Subject: [PATCH] stray minus sign --HG-- branch : minor --- src/modules/audio/openal/Source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/audio/openal/Source.cpp b/src/modules/audio/openal/Source.cpp index e17f80b80..093b0fd0c 100644 --- a/src/modules/audio/openal/Source.cpp +++ b/src/modules/audio/openal/Source.cpp @@ -282,7 +282,7 @@ bool Source::update() case TYPE_STATIC: { // Looping mode could have changed. -- // FIXME: make looping mode change atomically so this is not needed + // FIXME: make looping mode change atomically so this is not needed alSourcei(source, AL_LOOPING, isLooping() ? AL_TRUE : AL_FALSE); return !isFinished(); }