commit 3d4d80eb7a820b10d630cc321d6dd12ad9db813d
parent 2b1616c6e6be4be44f7a2eeae7407847fd071f5d
Author: Hans Petter Selasky <hps@selasky.org>
Date: Sun, 3 Feb 2019 20:00:24 +0100
Fix style.
Signed-off-by: Hans Petter Selasky <hps@selasky.org>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Containers/NotePool.cpp b/src/Containers/NotePool.cpp
@@ -249,7 +249,7 @@ int NotePool::getRunningNotes(void) const
for(auto &desc:activeDesc()) {
if(desc.playing() == false && desc.sustained() == false)
continue;
- if (running[desc.note] != false)
+ if(running[desc.note] != false)
continue;
running[desc.note] = true;
running_count++;