MADE: Revert a little behavior change in setRGBPalette.

This was introduced when converting to the new RGB data setPalette call. It
should not have caused any troubles, since start is always 0 it seems, but
better be sure about this one and keep the original behavior.
This commit is contained in:
Johannes Schickel 2011-02-15 22:57:34 +01:00
parent 74e4b5a6cd
commit 2078024ee4

View File

@ -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) {