aboutsummaryrefslogtreecommitdiff
path: root/audio/softsynth/mt32/Poly.h
diff options
context:
space:
mode:
Diffstat (limited to 'audio/softsynth/mt32/Poly.h')
-rw-r--r--audio/softsynth/mt32/Poly.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/audio/softsynth/mt32/Poly.h b/audio/softsynth/mt32/Poly.h
index cd15a776f5..e25b6d8993 100644
--- a/audio/softsynth/mt32/Poly.h
+++ b/audio/softsynth/mt32/Poly.h
@@ -41,6 +41,8 @@ private:
Partial *partials[4];
+ Poly *next;
+
public:
Poly(Part *part);
void reset(unsigned int key, unsigned int velocity, bool sustain, Partial **partials);
@@ -60,6 +62,9 @@ public:
bool isActive() const;
void partialDeactivated(Partial *partial);
+
+ Poly *getNext();
+ void setNext(Poly *poly);
};
}