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

Fix Windows builds due to missing header

This commit is contained in:
Michał Janiszewski
2016-12-01 10:12:52 +01:00
parent ecec752dec
commit 070e41e656

View File

@@ -26,6 +26,11 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#elif defined(__WINDOWS__)
extern "C" {
// Windows needs this for widechar <-> utf8 conversion utils
#include "../localisation/language.h"
}
#endif
#include <stack>