Skip to content

Commit

Permalink
MIDI encoder fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jackoalan committed Mar 24, 2017
1 parent 54bbc73 commit 3d56d5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/SongConverter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@ class MIDIEncoder

void _sendContinuedValue(uint32_t val)
{
uint32_t send[3] = {};
uint32_t* ptr = nullptr;
uint8_t send[3] = {};
uint8_t* ptr = nullptr;
if (val >= 0x4000)
{
ptr = &send[0];
Expand Down

0 comments on commit 3d56d5f

Please sign in to comment.