diff options
author | Max Horn | 2011-02-07 17:52:38 +0000 |
---|---|---|
committer | Max Horn | 2011-02-07 17:52:38 +0000 |
commit | ab039812e7d0a0202317c61a2cb64874e4d0c410 (patch) | |
tree | c3069b36ba6e18068fa343416acf485e2d0728e4 /engines/touche | |
parent | 8981fa3f164aa8f397df2af8b85d6edfa4bdd883 (diff) | |
download | scummvm-rg350-ab039812e7d0a0202317c61a2cb64874e4d0c410.tar.gz scummvm-rg350-ab039812e7d0a0202317c61a2cb64874e4d0c410.tar.bz2 scummvm-rg350-ab039812e7d0a0202317c61a2cb64874e4d0c410.zip |
COMMON: OSystem now has a PaletteManager
svn-id: r55806
Diffstat (limited to 'engines/touche')
-rw-r--r-- | engines/touche/touche.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/touche/touche.cpp b/engines/touche/touche.cpp index e99a08ee6a..e8d9be87d1 100644 --- a/engines/touche/touche.cpp +++ b/engines/touche/touche.cpp @@ -3259,7 +3259,7 @@ void ToucheEngine::setPalette(int firstColor, int colorCount, int rScale, int gS pal[i * 4 + 3] = 0; } - _system->setPalette(&pal[firstColor * 4], firstColor, colorCount); + _system->getPaletteManager()->setPalette(&pal[firstColor * 4], firstColor, colorCount); } void ToucheEngine::updateScreenArea(int x, int y, int w, int h) { @@ -3294,7 +3294,7 @@ void ToucheEngine::updateDirtyScreenAreas() { } void ToucheEngine::updatePalette() { - _system->setPalette(_paletteBuffer, 0, 256); + _system->getPaletteManager()->setPalette(_paletteBuffer, 0, 256); } bool ToucheEngine::canLoadGameStateCurrently() { |