mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[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:
parent
8929269a24
commit
62e2601488
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ GetLargerTimeZoneEntry(
|
||||||
Entry = TimeZoneListHead;
|
Entry = TimeZoneListHead;
|
||||||
while (Entry != NULL)
|
while (Entry != NULL)
|
||||||
{
|
{
|
||||||
if (Entry->TimezoneInfo.Bias > Bias)
|
if (Entry->TimezoneInfo.Bias < Bias)
|
||||||
return Entry;
|
return Entry;
|
||||||
|
|
||||||
if (Entry->TimezoneInfo.Bias == Bias)
|
if (Entry->TimezoneInfo.Bias == Bias)
|
||||||
|
|
Loading…
Reference in a new issue