Skip to content

Commit

Permalink
Fixed note tracking. Updated release date
Browse files Browse the repository at this point in the history
  • Loading branch information
bjt42 committed Aug 9, 2013
1 parent 9af3ea8 commit 5482a96
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Copyright (C) 2013 bjt
Copyright (C) 2002-2013 The DOSBox Team
----------------------------------------------

Release Notes (16/08/13)
Release Notes (09/08/13)

WHAT IS IT?

Expand Down
Binary file modified SOFTMPU.EXE
Binary file not shown.
2 changes: 1 addition & 1 deletion SRC/MIDI.C
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ void MIDI_RawOutByte(Bit8u data) {
{
pChan=&tracked_channels[midi.status&0x0f];
pChan->notes[pChan->next++]=midi.cmd_buf[1];
pChan->next &= MAX_TRACKED_NOTES;
if (pChan->next==MAX_TRACKED_NOTES) pChan->next=0;
if (pChan->used<MAX_TRACKED_NOTES) pChan->used++;
}

Expand Down
2 changes: 1 addition & 1 deletion SRC/RESIDENT.ASM
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ SBDetected DB 0

; Following data needs to be 4-byte aligned
; Might need to add some padding here for detection to work
IDPad DB 2 DUP (?)
IDPad DB 0 DUP (?)
IDString DB '0S2M' ; Detection string

INCLUDE appstr.asm ; App ID substrings
Expand Down

0 comments on commit 5482a96

Please sign in to comment.