diff options
| -rw-r--r-- | engines/made/screen.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/screen.cpp b/engines/made/screen.cpp index b76ff15851..2649e2bd37 100644 --- a/engines/made/screen.cpp +++ b/engines/made/screen.cpp @@ -218,7 +218,7 @@ void Screen::drawSurface(Graphics::Surface *sourceSurface, int x, int y, int16 f  }  void Screen::setRGBPalette(byte *palRGB, int start, int count) { -	_vm->_system->getPaletteManager()->setPalette(palRGB + start * 3, start, count); +	_vm->_system->getPaletteManager()->setPalette(palRGB, start, count);  }  uint16 Screen::updateChannel(uint16 channelIndex) {  | 
