From e492fe6d696fa142e299db06171f586e9f162647 Mon Sep 17 00:00:00 2001 From: asb2m10 Date: Sat, 13 Aug 2016 00:09:02 -0400 Subject: [PATCH] Dexed 0.9.2b1 --- README.md | 2 ++ Source/Dexed.h | 2 +- Source/msfa/dx7note.cc | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da79571..4ae1b52 100644 --- a/README.md +++ b/README.md @@ -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 ------------ diff --git a/Source/Dexed.h b/Source/Dexed.h index d88f39c..2640f40 100644 --- a/Source/Dexed.h +++ b/Source/Dexed.h @@ -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" diff --git a/Source/msfa/dx7note.cc b/Source/msfa/dx7note.cc index 7af3d29..a04f5cf 100644 --- a/Source/msfa/dx7note.cc +++ b/Source/msfa/dx7note.cc @@ -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) {