reduce MIDI_CMD_INTERVAL_MIN to 1ms

This commit is contained in:
Peter Cai 2021-06-11 12:56:34 +08:00
parent e3517d6fa3
commit 882f164a24
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
// Minimal interval between reading two chunks of MIDI data
// This improves frequency accuracy by throttling non-synthesizing actions
#define MIDI_CMD_INTERVAL_MIN 15 * 1000 // 15ms
#define MIDI_CMD_INTERVAL_MIN 1000 // 1ms
using namespace midi;