summaryrefslogtreecommitdiff
path: root/w32dm.c
diff options
context:
space:
mode:
authororudge <orudge@openttd.org>2004-08-15 16:08:32 +0000
committerorudge <orudge@openttd.org>2004-08-15 16:08:32 +0000
commita16f242808ba4a0d95650ed0c2571af942a4f796 (patch)
tree30bf22c7aee230d6b8b4a906aed42dfbe2815718 /w32dm.c
parent43d691df17d98aa5493e63d9e7e082d975290af8 (diff)
downloadopenttd-a16f242808ba4a0d95650ed0c2571af942a4f796.tar.xz
(svn r57) Fix to DirectMusic driver init return value
Diffstat (limited to 'w32dm.c')
-rw-r--r--w32dm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/w32dm.c b/w32dm.c
index 7de6d5541..f8aebca20 100644
--- a/w32dm.c
+++ b/w32dm.c
@@ -65,7 +65,7 @@ static char * DMusicMidiStart(char **parm)
if (InitDirectMusic() == true)
return(0);
else
- return(false);
+ return("Unable to initialize DirectMusic");
}
static void DMusicMidiStop()