1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 04:05:49 +01:00

Fix compilation on Haiku

This commit is contained in:
Peppersawce
2026-02-01 22:10:41 +01:00
parent 8bc56a988f
commit d28d4ae18f

View File

@@ -38,7 +38,7 @@
#include "StringBuilder.h"
#include "UTF8.h"
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
#if defined(__unix__) || defined(__HAIKU__) || (defined(__APPLE__) && defined(__MACH__))
#include <strings.h>
#define _stricmp(x, y) strcasecmp((x), (y))
#endif