diff options
-rw-r--r-- | common/scummsys.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/common/scummsys.h b/common/scummsys.h index 5063cef29d..fe5e8d8a12 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -101,9 +101,8 @@ #ifdef X11_BACKEND - /* You need to set those manually */ + // You need to set this manually if necessary // #define SCUMM_LITTLE_ENDIAN - /* #define SCUMM_NEED_ALIGNMENT */ #else /* need this for the SDL_BYTEORDER define */ @@ -113,12 +112,14 @@ #define SCUMM_LITTLE_ENDIAN #elif SDL_BYTEORDER == SDL_BIG_ENDIAN #define SCUMM_BIG_ENDIAN - #define SCUMM_NEED_ALIGNMENT #else #error Neither SDL_BIG_ENDIAN nor SDL_LITTLE_ENDIAN is set. #endif #endif + // You need to set this manually if necessary +// #define SCUMM_NEED_ALIGNMENT + #define FORCEINLINE inline #define CDECL |