Fix arpeggio to work better with the new way to handle note offsets

Ok, not really related to memory management, but was something that needed doing and it's easier to test things when things work properly
This commit is contained in:
Vesa
2014-08-24 15:44:36 +03:00
parent 3a9e9cc075
commit a8211873b5
3 changed files with 23 additions and 22 deletions

View File

@@ -31,6 +31,7 @@
#include "PlayHandle.h"
#include "track.h"
#include "MemoryManager.h"
#include <QtCore/QAtomicInt>
class InstrumentTrack;
class NotePlayHandle;
@@ -335,6 +336,7 @@ private:
static NotePlayHandleList s_nphCache;
static NotePlayHandleList s_available;
static QMutex s_mutex;
static QAtomicInt s_availableIndex;
};