Fix build on Windows when there is no Config.h
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4583 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
f796d4d747
commit
43e68713a9
|
@ -10,7 +10,11 @@
|
|||
|
||||
#include <limits.h>
|
||||
#include <stddef.h>
|
||||
// can't include Common.h because it's C++
|
||||
// the following is OK because on Windows, Lua needs nothing special
|
||||
#ifndef _WIN32
|
||||
#include "../../Source/Core/Common/Src/Config.h"
|
||||
#endif
|
||||
|
||||
/*
|
||||
** ==================================================================
|
||||
|
|
Loading…
Reference in New Issue