diff --git a/Sources/Engine/Base/SDL/SDLInput.cpp b/Sources/Engine/Base/SDL/SDLInput.cpp index 0eab255..902e81a 100755 --- a/Sources/Engine/Base/SDL/SDLInput.cpp +++ b/Sources/Engine/Base/SDL/SDLInput.cpp @@ -2,6 +2,7 @@ /* rcg10072001 Moved stuff into this file. */ +#define __STDC_LIMIT_MACROS 1 #include "SDL.h" #include diff --git a/Sources/Engine/Base/SDL/SDLTimer.cpp b/Sources/Engine/Base/SDL/SDLTimer.cpp old mode 100644 new mode 100755 index 86a80bb..ab5a1b2 --- a/Sources/Engine/Base/SDL/SDLTimer.cpp +++ b/Sources/Engine/Base/SDL/SDLTimer.cpp @@ -1,6 +1,7 @@ /* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */ /* rcg10072001 Moved stuff into this file. */ +#define __STDC_LIMIT_MACROS 1 #include "SDL.h" #include diff --git a/Sources/Engine/Engine.h b/Sources/Engine/Engine.h old mode 100644 new mode 100755 index 538a294..8c46684 --- a/Sources/Engine/Engine.h +++ b/Sources/Engine/Engine.h @@ -28,6 +28,8 @@ with this program; if not, write to the Free Software Foundation, Inc., // set this to 1 to enable checks whether somethig is deleted while iterating some array/container #define CHECKARRAYLOCKING 0 +#define __STDC_LIMIT_MACROS 1 + #include #include #include diff --git a/Sources/Engine/Graphics/SDL/SDLAdapter.cpp b/Sources/Engine/Graphics/SDL/SDLAdapter.cpp old mode 100644 new mode 100755 index 7f867c0..625044c --- a/Sources/Engine/Graphics/SDL/SDLAdapter.cpp +++ b/Sources/Engine/Graphics/SDL/SDLAdapter.cpp @@ -1,4 +1,5 @@ /* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */ +#define __STDC_LIMIT_MACROS 1 #include