aboutsummaryrefslogtreecommitdiff
path: root/engines/made/screen.h
diff options
context:
space:
mode:
authorFilippos Karapetis2008-04-21 20:20:34 +0000
committerFilippos Karapetis2008-04-21 20:20:34 +0000
commit54485c24c530288280174f6d286c8c0b367a8206 (patch)
tree3f2a547f0b380f6db26480e222ab5dc1cda75cc3 /engines/made/screen.h
parent169bf5ddba25a7ab63b405a48bccc449550a693e (diff)
downloadscummvm-rg350-54485c24c530288280174f6d286c8c0b367a8206.tar.gz
scummvm-rg350-54485c24c530288280174f6d286c8c0b367a8206.tar.bz2
scummvm-rg350-54485c24c530288280174f6d286c8c0b367a8206.zip
Some palette related fixes
svn-id: r31650
Diffstat (limited to 'engines/made/screen.h')
-rw-r--r--engines/made/screen.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/made/screen.h b/engines/made/screen.h
index 545cce2bfd..d6040e7dcc 100644
--- a/engines/made/screen.h
+++ b/engines/made/screen.h
@@ -61,6 +61,7 @@ public:
void clearScreen();
void drawSurface(Graphics::Surface *source, int x, int y);
+ void loadRGBPalette(byte *palRGB, int count = 256);
void setRGBPalette(byte *palRGB, int start = 0, int count = 256);
uint16 updateChannel(uint16 channelIndex);
@@ -99,7 +100,7 @@ public:
void setExclude(uint16 exclude);
void setGround(uint16 ground);
- byte _palette[256 * 4];
+ byte _screenPalette[256 * 4];
protected:
MadeEngine *_vm;