1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-22 07:13:07 +01:00

only include windows.h on windows

This commit is contained in:
Ted John
2016-07-16 14:49:41 +01:00
parent bd3331df4f
commit c413c43123

View File

@@ -17,7 +17,11 @@
#include <cassert>
#include <stdarg.h>
#include <stdio.h>
#ifdef __WINDOWS__
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
#include "Console.hpp"
#include "Diagnostics.hpp"