diff options
author | orudge <orudge@openttd.org> | 2004-08-15 16:08:32 +0000 |
---|---|---|
committer | orudge <orudge@openttd.org> | 2004-08-15 16:08:32 +0000 |
commit | a16f242808ba4a0d95650ed0c2571af942a4f796 (patch) | |
tree | 30bf22c7aee230d6b8b4a906aed42dfbe2815718 | |
parent | 43d691df17d98aa5493e63d9e7e082d975290af8 (diff) | |
download | openttd-a16f242808ba4a0d95650ed0c2571af942a4f796.tar.xz |
(svn r57) Fix to DirectMusic driver init return value
-rw-r--r-- | w32dm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |