summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar ShizZy2013-09-17 22:58:18 -0400
committerGravatar ShizZy2013-09-17 22:58:18 -0400
commitd5863c415e860e33f713057e72e5737f8982758a (patch)
treec0669453aa9d98d660f3f001739159e96ca907df /src/common
parentinitialized log manager (diff)
downloadyuzu-d5863c415e860e33f713057e72e5737f8982758a.tar.gz
yuzu-d5863c415e860e33f713057e72e5737f8982758a.tar.xz
yuzu-d5863c415e860e33f713057e72e5737f8982758a.zip
added default windows include
Diffstat (limited to 'src/common')
-rw-r--r--src/common/src/common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/src/common.h b/src/common/src/common.h
index 0e5bf1cd3..e1cae4fee 100644
--- a/src/common/src/common.h
+++ b/src/common/src/common.h
@@ -50,6 +50,10 @@ private:
50#include "common_paths.h" 50#include "common_paths.h"
51#include "platform.h" 51#include "platform.h"
52 52
53#if EMU_PLATFORM == PLATFORM_WINDOWS
54#include <windows.h>
55#endif
56
53#ifdef __APPLE__ 57#ifdef __APPLE__
54// The Darwin ABI requires that stack frames be aligned to 16-byte boundaries. 58// The Darwin ABI requires that stack frames be aligned to 16-byte boundaries.
55// This is only needed on i386 gcc - x86_64 already aligns to 16 bytes. 59// This is only needed on i386 gcc - x86_64 already aligns to 16 bytes.