From 9c8cfe3b7586471958c9b90a04e0fab65f04a37a Mon Sep 17 00:00:00 2001 From: FosterProgramming Date: Sat, 13 Sep 2025 18:49:36 +0200 Subject: [PATCH] Fix include order in src/clock.c to be alphabetical (#2181) --- src/clock.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/clock.c b/src/clock.c index 125d403bb3..0f46fd4ca8 100644 --- a/src/clock.c +++ b/src/clock.c @@ -1,15 +1,15 @@ #include "global.h" +#include "berry.h" +#include "dewford_trend.h" #include "event_data.h" +#include "field_specials.h" +#include "field_weather.h" +#include "main.h" +#include "lottery_corner.h" +#include "overworld.h" #include "rtc.h" #include "time_events.h" -#include "field_specials.h" -#include "lottery_corner.h" -#include "dewford_trend.h" #include "tv.h" -#include "field_weather.h" -#include "berry.h" -#include "main.h" -#include "overworld.h" #include "wallclock.h" static void UpdatePerDay(struct Time *localTime);