Changeset - r23411:63c04d5b95c5
[Not reviewed]
master
0 1 0
Patric Stout - 5 years ago 2019-03-05 20:56:26
truebrain@openttd.org
Fix: warnings when compiling with DJGPP

This was most likely broken for months, if not years.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/core/endian_type.hpp
Show inline comments
 
@@ -26,7 +26,7 @@
 
#define TTD_BIG_ENDIAN 1
 

	
 
/* Windows has always LITTLE_ENDIAN */
 
#if defined(_WIN32) || defined(__OS2__) || defined(__HAIKU__)
 
#if defined(_WIN32) || defined(__OS2__) || defined(__HAIKU__) || defined(__DJGPP__)
 
#	define TTD_ENDIAN TTD_LITTLE_ENDIAN
 
#elif defined(OSX)
 
#	include <sys/types.h>
0 comments (0 inline, 0 general)