Skip to content

Commit a5b8ce7

Browse files
committed
Increase midi->cynthcart queue size
1 parent 0fb2ba2 commit a5b8ce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/midi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ void midi_init(void)
9191
static inline void emulator_queue_init(void)
9292
{
9393
/* emudore */
94-
queue_init(&cynthcart_queue, sizeof(cynthcart_queue_entry_t), (4 * 16)); /* 4 * 16 entries */
94+
queue_init(&cynthcart_queue, sizeof(cynthcart_queue_entry_t), 128); /* 128 entries as buffer */
9595
}
9696

9797
static inline void emulator_queue_deinit(void)

0 commit comments

Comments
 (0)