mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
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:
parent
74e4b5a6cd
commit
2078024ee4
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user