From f31f9a454ded66134852bfee99cc08485f9478d9 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sat, 20 Jan 2024 02:34:21 -0500 Subject: [PATCH] fix instrument load preview --- src/engine/engine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/engine.h b/src/engine/engine.h index 1e13e3ccb..340e74c2e 100644 --- a/src/engine/engine.h +++ b/src/engine/engine.h @@ -174,7 +174,7 @@ struct DivChannelState { struct DivNoteEvent { signed char channel; - unsigned char ins; + short ins; signed char note, volume; bool on, nop, insChange, fromMIDI; DivNoteEvent(int c, int i, int n, int v, bool o, bool ic=false, bool fm=false):