mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
arm: removed include of windows.h from armdefs.h to arminit.c (only module that uses it)
This commit is contained in:
parent
22eb9a8981
commit
a721a4eb33
2 changed files with 3 additions and 4 deletions
|
@ -24,10 +24,6 @@
|
||||||
|
|
||||||
#include "common/platform.h"
|
#include "common/platform.h"
|
||||||
|
|
||||||
#if EMU_PLATFORM == PLATFORM_WINDOWS
|
|
||||||
#include <windows.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//teawater add for arm2x86 2005.02.14-------------------------------------------
|
//teawater add for arm2x86 2005.02.14-------------------------------------------
|
||||||
// koodailar remove it for mingw 2005.12.18----------------
|
// koodailar remove it for mingw 2005.12.18----------------
|
||||||
//anthonylee modify it for portable 2007.01.30
|
//anthonylee modify it for portable 2007.01.30
|
||||||
|
|
|
@ -17,8 +17,11 @@
|
||||||
|
|
||||||
|
|
||||||
#include "common/platform.h"
|
#include "common/platform.h"
|
||||||
|
|
||||||
#if EMU_PLATFORM == PLATFORM_LINUX
|
#if EMU_PLATFORM == PLATFORM_LINUX
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#elif EMU_PLATFORM == PLATFORM_WINDOWS
|
||||||
|
#include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
Loading…
Reference in a new issue