1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

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>
This commit is contained in:
Bart Ribbers
2025-03-19 23:59:30 +01:00
committed by GitHub
parent a80762d41c
commit 1ea87b93f1

View File

@@ -10,6 +10,7 @@
#pragma once
#include <cstdint>
#include <ctime>
#include <functional>
#include <openrct2/core/StringTypes.h>
#include <openrct2/localisation/StringIdType.h>