From 1ea87b93f1707c19ac97243be01c381a160cbc8a Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Wed, 19 Mar 2025 23:59:30 +0100 Subject: [PATCH] Add missing ctime include to FileBrowser.h (#24029) time_t is used which is defined in ctime. At least on musl libc systems this header is not implicitly included and needs to be includex explicitly. Co-authored-by: Michael Steenbeek <1478678+Gymnasiast@users.noreply.github.com> --- src/openrct2-ui/interface/FileBrowser.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openrct2-ui/interface/FileBrowser.h b/src/openrct2-ui/interface/FileBrowser.h index f577b84b15..f4754f92c1 100644 --- a/src/openrct2-ui/interface/FileBrowser.h +++ b/src/openrct2-ui/interface/FileBrowser.h @@ -10,6 +10,7 @@ #pragma once #include +#include #include #include #include