winmm: Time formats hms/tmsf use leading zeroes as in 00:00:00.

This commit is contained in:
Jörg Höhle 2009-10-18 17:40:41 +02:00 committed by Alexandre Julliard
parent 7d002f228c
commit 91344ae77c
1 changed files with 2 additions and 2 deletions

View File

@ -1155,8 +1155,8 @@ static DWORD MCI_HandleReturnValues(DWORD dwRet, LPWINE_MCIDRIVER wmd, DWORD ret
{
static const WCHAR wszLd [] = {'%','l','d',0};
static const WCHAR wszLd4 [] = {'%','l','d',' ','%','l','d',' ','%','l','d',' ','%','l','d',0};
static const WCHAR wszCol3[] = {'%','d',':','%','d',':','%','d',0};
static const WCHAR wszCol4[] = {'%','d',':','%','d',':','%','d',':','%','d',0};
static const WCHAR wszCol3[] = {'%','0','2','d',':','%','0','2','d',':','%','0','2','d',0};
static const WCHAR wszCol4[] = {'%','0','2','d',':','%','0','2','d',':','%','0','2','d',':','%','0','2','d',0};
if (lpstrRet) {
switch (retType) {