(svn r16012) -Codechange: Code style clean up.

This commit is contained in:
peter1138
2009-04-10 11:03:48 +00:00
parent 328fc1fc71
commit 99d2707e06
4 changed files with 23 additions and 11 deletions

View File

@@ -38,8 +38,9 @@ void MusicDriver_OS2::PlaySong(const char *filename)
{
MidiSendCommand("close all");
if (MidiSendCommand("open %s type sequencer alias song", filename) != 0)
if (MidiSendCommand("open %s type sequencer alias song", filename) != 0) {
return;
}
MidiSendCommand("play song from 0");
}