Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/db599940d72adb50a4ef3a0ef58084e76c58c86c?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Dateien hochladen nach „“

pull/74/head
positionhigh 4 years ago
parent 396150a5b2
commit db599940d7
  1. 5
      MicroDexed.ino

@ -767,6 +767,9 @@ void loop()
MIDI MESSAGE HANDLER
******************************************************************************/
void handleNoteOn(byte inChannel, byte inNumber, byte inVelocity)
{
//Ignore the note when playing & recording the same note into the sequencer
if (seq_recording == false || (seq_recording && inNumber != seq_note_in ))
{
// Check for MicroDexed
for (uint8_t instance_id = 0; instance_id < NUM_DEXED; instance_id++)
@ -817,7 +820,6 @@ void handleNoteOn(byte inChannel, byte inNumber, byte inVelocity)
Serial.print(F("]: "));
Serial.println(note_name);
#endif
for (uint8_t d = 0; d < NUM_DRUMSET_CONFIG; d++)
{
if (inNumber == drum_config[d].midinote)
@ -855,6 +857,7 @@ void handleNoteOn(byte inChannel, byte inNumber, byte inVelocity)
}
#endif
}
}
#if NUM_DRUMS > 0
uint8_t drum_get_slot(uint8_t dt)

Loading…
Cancel
Save