GetTimeFormat() should return LocalTime not SystemTime.

This commit is contained in:
Dave Pickles 1999-07-10 11:38:20 +00:00 committed by Alexandre Julliard
parent 036a9f79a9
commit 2bddc97774
1 changed files with 1 additions and 1 deletions

View File

@ -3147,7 +3147,7 @@ GetTimeFormatA(LCID locale, /* in */
} }
if (xtime == NULL) /* NULL means use the current local time*/ if (xtime == NULL) /* NULL means use the current local time*/
{ GetSystemTime(&t); { GetLocalTime(&t);
thistime = &t; thistime = &t;
} }
else else