From 62e26014888a66c5824d17f577e0abad71b1e47c Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sat, 23 Sep 2017 18:54:58 +0000 Subject: [PATCH] [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 --- reactos/dll/cpl/timedate/timezone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/cpl/timedate/timezone.c b/reactos/dll/cpl/timedate/timezone.c index 1d3b3f8c20e..06a2d1a4db2 100644 --- a/reactos/dll/cpl/timedate/timezone.c +++ b/reactos/dll/cpl/timedate/timezone.c @@ -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)