From 2b1aa6667296a6c1981c27c8fd101e50e2acaa1e Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Wed, 23 Feb 2011 10:32:56 +0000 Subject: [PATCH 1/1] [MPLAY32] - Hackfix playback See issue #5867 for more details. svn path=/trunk/; revision=50871 --- reactos/base/applications/mplay32/mplay32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/applications/mplay32/mplay32.c b/reactos/base/applications/mplay32/mplay32.c index f4bd117a65f..3e0cca4c93b 100644 --- a/reactos/base/applications/mplay32/mplay32.c +++ b/reactos/base/applications/mplay32/mplay32.c @@ -455,7 +455,7 @@ PlayFile(HWND hwnd, LPTSTR lpFileName) mciPlay.dwFrom = 0; mciPlay.dwTo = MaxFilePos; - mciError = mciSendCommand(wDeviceId, MCI_PLAY, MCI_NOTIFY | MCI_FROM | MCI_TO, (DWORD_PTR)&mciPlay); + mciError = mciSendCommand(wDeviceId, MCI_PLAY, MCI_NOTIFY | MCI_FROM /*| MCI_TO*/, (DWORD_PTR)&mciPlay); if (mciError != 0) { MessageBox(hwnd, _T("Can't play!"), NULL, MB_OK); -- 2.17.1