(svn r20104) -Fix: [Win32] The win32 MIDI driver might clip the start of a song.

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
michi_cc 14 years ago
parent cddd6df252
commit 58f1470129

@ -79,7 +79,8 @@ static bool MidiIntPlaySong(const char *filename)
if (MidiSendCommand(_T("open \"%s\" type sequencer alias song"), buf) != 0) return false;
}
return MidiSendCommand(_T("play song from 0")) == 0;
MidiSendCommand(_T("seek song to start wait"));
return MidiSendCommand(_T("play song")) == 0;
}
static void MidiIntStopSong()

Loading…
Cancel
Save