aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/screen.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/screen.h')
-rw-r--r--engines/kyra/screen.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/kyra/screen.h b/engines/kyra/screen.h
index b6e64bd5ca..8744a7107d 100644
--- a/engines/kyra/screen.h
+++ b/engines/kyra/screen.h
@@ -82,17 +82,17 @@ public:
/**
* Load a VGA palette from the given stream.
*/
- void loadVGAPalette(Common::ReadStream &stream, int colors = -1);
+ void loadVGAPalette(Common::ReadStream &stream, int startIndex, int colors);
/**
* Load a AMIGA palette from the given stream.
*/
- void loadAmigaPalette(Common::ReadStream &stream, int colors = -1);
+ void loadAmigaPalette(Common::ReadStream &stream, int startIndex, int colors);
/**
* Load a PC98 16 color palette from the given stream.
*/
- void loadPC98Palette(Common::ReadStream &stream, int colors = -1);
+ void loadPC98Palette(Common::ReadStream &stream, int startIndex, int colors);
/**
* Return the number of colors this palette manages.