mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
(svn r2922) Fix crash with directmusic if no music files could be found to play
This commit is contained in:
parent
6145b99c22
commit
91c217867f
@ -115,18 +115,24 @@ static void DMusicMidiStop(void)
|
||||
{
|
||||
seeking = false;
|
||||
|
||||
performance->Stop(NULL, NULL, 0, 0);
|
||||
if (performance != NULL) performance->Stop(NULL, NULL, 0, 0);
|
||||
|
||||
segment->SetParam(GUID_Unload, -1, 0, 0, performance);
|
||||
segment->Release();
|
||||
segment = NULL;
|
||||
if (segment != NULL) {
|
||||
segment->SetParam(GUID_Unload, -1, 0, 0, performance);
|
||||
segment->Release();
|
||||
segment = NULL;
|
||||
}
|
||||
|
||||
performance->CloseDown();
|
||||
performance->Release();
|
||||
performance = NULL;
|
||||
if (performance != NULL) {
|
||||
performance->CloseDown();
|
||||
performance->Release();
|
||||
performance = NULL;
|
||||
}
|
||||
|
||||
loader->Release();
|
||||
loader = NULL;
|
||||
if (loader != NULL) {
|
||||
loader->Release();
|
||||
loader = NULL;
|
||||
}
|
||||
|
||||
proc.CoUninitialize();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user