Author: ekohl Date: Sat Sep 23 18:54:58 2017 New Revision: 75931
URL: http://svn.reactos.org/svn/reactos?rev=75931&view=rev Log: [DATETIME] Invert the sort order of the timezone list. List the timezones from GMT-12:00 to GMT+13:00.
Modified: trunk/reactos/dll/cpl/timedate/timezone.c
Modified: trunk/reactos/dll/cpl/timedate/timezone.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/timedate/timezone.c... ============================================================================== --- trunk/reactos/dll/cpl/timedate/timezone.c [iso-8859-1] (original) +++ trunk/reactos/dll/cpl/timedate/timezone.c [iso-8859-1] Sat Sep 23 18:54:58 2017 @@ -48,7 +48,7 @@ Entry = TimeZoneListHead; while (Entry != NULL) { - if (Entry->TimezoneInfo.Bias > Bias) + if (Entry->TimezoneInfo.Bias < Bias) return Entry;
if (Entry->TimezoneInfo.Bias == Bias)