(svn r12372) -Fix: win32 music driver fails if path contains non-latin chars
authorglx
Sat, 15 Mar 2008 21:12:08 +0000
changeset 9195 b83118d81d4b
parent 9194 685d482d1e6c
child 9196 5e28b70db025
(svn r12372) -Fix: win32 music driver fails if path contains non-latin chars
src/music/win32_m.cpp
--- a/src/music/win32_m.cpp	Sat Mar 15 20:32:42 2008 +0000
+++ b/src/music/win32_m.cpp	Sat Mar 15 21:12:08 2008 +0000
@@ -46,28 +46,29 @@
 	SetEvent(_midi.wait_obj);
 }
 
-static MCIERROR CDECL MidiSendCommand(const char* cmd, ...)
+static MCIERROR CDECL MidiSendCommand(const TCHAR* cmd, ...)
 {
 	va_list va;
-	char buf[512];
+	TCHAR buf[512];
 
 	va_start(va, cmd);
-	vsnprintf(buf, lengthof(buf), cmd, va);
+	_vsntprintf(buf, lengthof(buf), cmd, va);
 	va_end(va);
-	return mciSendStringA(buf, NULL, 0, 0);
+	return mciSendString(buf, NULL, 0, 0);
 }
 
 static bool MidiIntPlaySong(const char *filename)
 {
-	MidiSendCommand("close all");
-	if (MidiSendCommand("open \"%s\" type sequencer alias song", filename) != 0) return false;
+	MidiSendCommand(_T("close all"));
 
-	return MidiSendCommand("play song from 0") == 0;
+	if (MidiSendCommand(_T("open \"%s\" type sequencer alias song"), OTTD2FS(filename)) != 0) return false;
+
+	return MidiSendCommand(_T("play song from 0")) == 0;
 }
 
 static void MidiIntStopSong()
 {
-	MidiSendCommand("close all");
+	MidiSendCommand(_T("close all"));
 }
 
 static void MidiIntSetVolume(int vol)