Simple transpose issue. But PB has some problems...

pull/4/head
Holger Wirtz 5 years ago
parent bac0e417a4
commit d44120476f
  1. 4
      MicroDexed.ino
  2. 2
      config.h

@ -350,7 +350,7 @@ void handleNoteOn(byte inChannel, byte inNumber, byte inVelocity)
{
if (checkMidiChannel(inChannel))
{
dexed->keydown(inNumber, inVelocity);
dexed->keydown(inNumber+12, inVelocity);
}
}
@ -358,7 +358,7 @@ void handleNoteOff(byte inChannel, byte inNumber, byte inVelocity)
{
if (checkMidiChannel(inChannel))
{
dexed->keyup(inNumber);
dexed->keyup(inNumber+12);
}
}

@ -59,7 +59,7 @@
//*************************************************************************************************
//* DEXED AND EFECTS SETTINGS
//*************************************************************************************************
#define DEXED_ENGINE DEXED_ENGINE_MODERN # DEXED_ENGINE_MARKI // DEXED_ENGINE_OPL
#define DEXED_ENGINE DEXED_ENGINE_MODERN // DEXED_ENGINE_MARKI // DEXED_ENGINE_OPL
// EFFECTS
#define FILTER_MAX_FREQ 10000

Loading…
Cancel
Save