diff options
Diffstat (limited to 'src/adlmidi_midiplay.hpp')
-rw-r--r-- | src/adlmidi_midiplay.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/adlmidi_midiplay.hpp b/src/adlmidi_midiplay.hpp index ff741ee..78cd89a 100644 --- a/src/adlmidi_midiplay.hpp +++ b/src/adlmidi_midiplay.hpp @@ -172,7 +172,7 @@ public: //! Time-to-live until release (short percussion note fix) double ttl; //! Patch selected - const adlinsdata2 *ains; + const OplInstMeta *ains; enum { MaxNumPhysChans = 2, @@ -196,18 +196,18 @@ public: //! Destination chip channel uint16_t chip_chan; //! ins, inde to adl[] - adldata ains; + OplTimbre op; //! Is this voice must be detunable? bool pseudo4op; void assign(const Phys &oth) { - ains = oth.ains; + op = oth.op; pseudo4op = oth.pseudo4op; } bool operator==(const Phys &oth) const { - return (ains == oth.ains) && (pseudo4op == oth.pseudo4op); + return (op == oth.op) && (pseudo4op == oth.pseudo4op); } bool operator!=(const Phys &oth) const { |