summaryrefslogtreecommitdiff
path: root/src/music/os2_m.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/music/os2_m.cpp')
-rw-r--r--src/music/os2_m.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/music/os2_m.cpp b/src/music/os2_m.cpp
index 1689f00a6..92e177f84 100644
--- a/src/music/os2_m.cpp
+++ b/src/music/os2_m.cpp
@@ -45,7 +45,7 @@ static long CDECL MidiSendCommand(const char *cmd, ...)
va_start(va, cmd);
vseprintf(buf, lastof(buf), cmd, va);
va_end(va);
- return mciSendString(buf, NULL, 0, NULL, 0);
+ return mciSendString(buf, nullptr, 0, nullptr, 0);
}
/** OS/2's music player's factory. */
@@ -78,7 +78,7 @@ void MusicDriver_OS2::SetVolume(byte vol)
bool MusicDriver_OS2::IsSongPlaying()
{
char buf[16];
- mciSendString("status song mode", buf, sizeof(buf), NULL, 0);
+ mciSendString("status song mode", buf, sizeof(buf), nullptr, 0);
return strcmp(buf, "playing") == 0 || strcmp(buf, "seeking") == 0;
}