Dexed 0.9.2b1

pull/1/head
asb2m10 8 years ago
parent b9400cf51e
commit e492fe6d69
  1. 2
      README.md
  2. 2
      Source/Dexed.h
  3. 2
      Source/msfa/dx7note.cc

@ -23,6 +23,7 @@ Changelog
* Correct feedback implementation for Algo 4 and 6
* Single click program select
* Fix sysex issue with wrong machine ID
* Fix for parameter hosts values. @
#### Version 0.9.1
* Mark I engine now uses 10-bit sine/exp tables. Still a work in progress but we are getting there
@ -58,6 +59,7 @@ Credits & thanks
* DX7 program compilation : Jean-Marc Desprez (author of [SynprezFM](http://www.synprez.com/SynprezFM))
* DX7 programs : Dave Benson, Frank Carvalho, Tim Conrardy, Jack Deckard, Chris Dodunski, Tim Garrett, Hitaye, Stephan Ibsen, Christian Jezreel, Narfman, Godric Wilkie
* falkTX [distrho](http://distrho.sourceforge.net/)
* Sentinel77 for parameter host value fix
TODO - Dexed
------------

@ -23,7 +23,7 @@
void dexed_trace(const char *source, const char *fmt, ...);
#define DEXED_ID "0.9.2a1"
#define DEXED_ID "0.9.2b1"
#ifdef DEBUG
#define DEXED_VERSION DEXED_ID " DEBUG"

@ -241,8 +241,8 @@ void Dx7Note::compute(int32_t *buf, int32_t lfo_val, int32_t lfo_delay, const Co
void Dx7Note::keyup() {
for (int op = 0; op < 6; op++) {
env_[op].keydown(false);
pitchenv_.keydown(false);
}
pitchenv_.keydown(false);
}
void Dx7Note::update(const uint8_t patch[156], int midinote, int fb_depth) {

Loading…
Cancel
Save