diff options
-rw-r--r-- | engines/gnap/gnap.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/gnap/gnap.cpp b/engines/gnap/gnap.cpp index f6c758becd..c9ea940933 100644 --- a/engines/gnap/gnap.cpp +++ b/engines/gnap/gnap.cpp @@ -173,7 +173,11 @@ GnapEngine::~GnapEngine() { Common::Error GnapEngine::run() { // Initialize the graphics mode to RGBA8888 +#if defined(SCUMM_BIG_ENDIAN) + Graphics::PixelFormat format = Graphics::PixelFormat(4, 8, 8, 8, 8, 0, 8, 16, 24); +#else Graphics::PixelFormat format = Graphics::PixelFormat(4, 8, 8, 8, 8, 24, 16, 8, 0); +#endif initGraphics(800, 600, true, &format); // We do not support color conversion yet |