commit 6846d54cdb67c5663504cb758c08f485d53f6bf8
parent 8f57bbd4e475c15c0365c613ce086175b2c9f12d
Author: Ricard Wanderlof <[email protected]>
Date: Sun, 17 Oct 2021 01:13:11 +0200
Replace stray tab character with spaces
Replace single occurrance of tab character with spaces.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Containers/NotePool.cpp b/src/Containers/NotePool.cpp
@@ -430,7 +430,7 @@ void NotePool::enforceVoiceLimit(int limit, int preferred_note)
int notes_to_kill = getRunningVoices() - limit;
while (notes_to_kill-- > 0)
- limitVoice(preferred_note);
+ limitVoice(preferred_note);
}