Skip to content

Commit e2ab955

Browse files
committed
[MP2K] Fix tune in saved MIDI
1 parent a5f6e96 commit e2ab955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VG Music Studio/Core/GBA/MP2K/Player.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -842,7 +842,7 @@ public void SaveAsMIDI(string fileName, MIDISaveArgs args)
842842
}
843843
case TuneCommand tune:
844844
{
845-
track.Insert(ticks, new ChannelMessage(ChannelCommand.Controller, trackIndex, 24, tune.Tune));
845+
track.Insert(ticks, new ChannelMessage(ChannelCommand.Controller, trackIndex, 24, tune.Tune + 0x40));
846846
break;
847847
}
848848
case VoiceCommand voice:

0 commit comments

Comments
 (0)