summaryrefslogtreecommitdiff
path: root/src/music/os2_m.cpp
diff options
context:
space:
mode:
authorNiels Martin Hansen <nielsm@indvikleren.dk>2018-03-17 14:51:30 +0100
committerMichael Lutz <michi@icosahedron.de>2018-06-05 22:58:35 +0200
commitf946b3da56b22c1fc32a9ffc9008374e4fb4f8c8 (patch)
tree3d8b2b0cf0e3931d2e38cce4b822f5b082d0cb92 /src/music/os2_m.cpp
parent1c2d29e1a3b5afdf3933f4cc743dda35c3ebb5fb (diff)
downloadopenttd-f946b3da56b22c1fc32a9ffc9008374e4fb4f8c8.tar.xz
Codechange: Pass a MusicSongInfo struct instead of bare filename to music drivers.
Preparation for later extending the info passed to music drivers.
Diffstat (limited to 'src/music/os2_m.cpp')
-rw-r--r--src/music/os2_m.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/music/os2_m.cpp b/src/music/os2_m.cpp
index d7fb97d2d..e308bac0d 100644
--- a/src/music/os2_m.cpp
+++ b/src/music/os2_m.cpp
@@ -12,6 +12,7 @@
#include "../stdafx.h"
#include "../openttd.h"
#include "os2_m.h"
+#include "../base_media_base.h"
#define INCL_DOS
#define INCL_OS2MM
@@ -49,11 +50,13 @@ static long CDECL MidiSendCommand(const char *cmd, ...)
/** OS/2's music player's factory. */
static FMusicDriver_OS2 iFMusicDriver_OS2;
-void MusicDriver_OS2::PlaySong(const char *filename)
+void MusicDriver_OS2::PlaySong(const MusicSongInfo &song)
{
+ if (song.filetype != MTT_STANDARDMIDI) return;
+
MidiSendCommand("close all");
- if (MidiSendCommand("open %s type sequencer alias song", filename) != 0) {
+ if (MidiSendCommand("open %s type sequencer alias song", song.filename) != 0) {
return;
}