aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/screen.h
diff options
context:
space:
mode:
authorJohannes Schickel2011-02-13 16:34:30 +0100
committerJohannes Schickel2011-02-14 17:08:32 +0100
commit68b17128c12b1e47ba56c014fa38de5632b0a810 (patch)
tree86a3c6c1a115f062455f59b59a2ac9c4a78697fe /engines/lure/screen.h
parent9216c7e3de6cca4b6e3857e6ba71b102e070705d (diff)
downloadscummvm-rg350-68b17128c12b1e47ba56c014fa38de5632b0a810.tar.gz
scummvm-rg350-68b17128c12b1e47ba56c014fa38de5632b0a810.tar.bz2
scummvm-rg350-68b17128c12b1e47ba56c014fa38de5632b0a810.zip
LURE: Adapt to setPalette RGBA->RGB change.
This is currently done by converting the internal palette from RGBA(?) to RGB when setPalette is called.
Diffstat (limited to 'engines/lure/screen.h')
-rw-r--r--engines/lure/screen.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/lure/screen.h b/engines/lure/screen.h
index 373683df2b..94bbab932e 100644
--- a/engines/lure/screen.h
+++ b/engines/lure/screen.h
@@ -42,6 +42,8 @@ private:
Disk &_disk;
Surface *_screen;
Palette *_palette;
+
+ void setSystemPalette(Palette *p, uint16 start, uint16 num);
public:
Screen(OSystem &system);
~Screen();