diff options
author | Alyssa Milburn | 2013-04-17 12:30:38 +0200 |
---|---|---|
committer | Alyssa Milburn | 2013-04-17 12:30:38 +0200 |
commit | e5509488ed7f091400654810177438217a479ded (patch) | |
tree | 56c49183c15bda7520b2e0595b61b8f0ce4ac167 /engines/hopkins | |
parent | 4b086b46b2e19f7f593b287655d8fc1417146636 (diff) | |
download | scummvm-rg350-e5509488ed7f091400654810177438217a479ded.tar.gz scummvm-rg350-e5509488ed7f091400654810177438217a479ded.tar.bz2 scummvm-rg350-e5509488ed7f091400654810177438217a479ded.zip |
HOPKINS: fix ingame save thumbnails on BE
Diffstat (limited to 'engines/hopkins')
-rw-r--r-- | engines/hopkins/saveload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hopkins/saveload.cpp b/engines/hopkins/saveload.cpp index 0576b851cd..af0b043641 100644 --- a/engines/hopkins/saveload.cpp +++ b/engines/hopkins/saveload.cpp @@ -292,7 +292,7 @@ void SaveLoadManager::convertThumb16To8(Graphics::Surface *thumb16, Graphics::Su byte paletteG[PALETTE_SIZE]; byte paletteB[PALETTE_SIZE]; for (int palIndex = 0; palIndex < PALETTE_SIZE; ++palIndex) { - uint16 p = READ_LE_UINT16(&_vm->_graphicsMan->_palettePixels[palIndex * 2]); + uint16 p = READ_UINT16(&_vm->_graphicsMan->_palettePixels[palIndex * 2]); pixelFormat16.colorToRGB(p, paletteR[palIndex], paletteG[palIndex], paletteB[palIndex]); } |