Commit 91344ae7 authored by Jörg Höhle's avatar Jörg Höhle Committed by Alexandre Julliard

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

parent 7d002f22
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment