[DATETIME]

Invert the sort order of the timezone list. List the timezones from GMT-12:00 to GMT+13:00.

svn path=/trunk/; revision=75931
This commit is contained in:
Eric Kohl 2017-09-23 18:54:58 +00:00
parent 8929269a24
commit 62e2601488

View file

@ -48,7 +48,7 @@ GetLargerTimeZoneEntry(
Entry = TimeZoneListHead;
while (Entry != NULL)
{
if (Entry->TimezoneInfo.Bias > Bias)
if (Entry->TimezoneInfo.Bias < Bias)
return Entry;
if (Entry->TimezoneInfo.Bias == Bias)