(svn r2680) Fix a warning

This commit is contained in:
tron 2005-07-22 15:12:51 +00:00
parent 290bb2fda6
commit 1b6ff121f4
1 changed files with 2 additions and 2 deletions

View File

@ -240,14 +240,14 @@ bool LoadMIDI (char *directory, char *filename)
// next we need to tell the segment what kind of data it contains. We do this // next we need to tell the segment what kind of data it contains. We do this
// with the IDirectMusicSegment::SetParam function. // with the IDirectMusicSegment::SetParam function.
if (FAILED(segment->SetParam((REFGUID)GUID_StandardMIDIFile, if (FAILED(segment->SetParam((REFGUID)GUID_StandardMIDIFile,
-1, 0, 0, (LPVOID)performance))) { 0xFFFFFFFF, 0, 0, (LPVOID)performance))) {
MSGBOX("LoadMIDI: SetParam (MIDI file) failed"); MSGBOX("LoadMIDI: SetParam (MIDI file) failed");
return false; return false;
} }
// finally, we need to tell the segment to 'download' the instruments // finally, we need to tell the segment to 'download' the instruments
if (FAILED(segment->SetParam((REFGUID)GUID_Download, if (FAILED(segment->SetParam((REFGUID)GUID_Download,
-1, 0, 0, (LPVOID)performance))) { 0xFFFFFFFF, 0, 0, (LPVOID)performance))) {
MSGBOX("LoadMIDI: Failed to download instruments"); MSGBOX("LoadMIDI: Failed to download instruments");
return false; return false;
} }