aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorFilippos Karapetis2009-01-06 16:10:04 +0000
committerFilippos Karapetis2009-01-06 16:10:04 +0000
commitc528f888d0c227bc735a3ba2110ad9708bc1abd8 (patch)
tree460bb8a8f93e2f5d61463ecd30710470778b961a /graphics
parentc5c4ab97c966d5ee178249e83dda4dfd97c07b97 (diff)
downloadscummvm-rg350-c528f888d0c227bc735a3ba2110ad9708bc1abd8.tar.gz
scummvm-rg350-c528f888d0c227bc735a3ba2110ad9708bc1abd8.tar.bz2
scummvm-rg350-c528f888d0c227bc735a3ba2110ad9708bc1abd8.zip
Specify that implementations of setPalette() should use an RGB palette
svn-id: r35755
Diffstat (limited to 'graphics')
-rw-r--r--graphics/video/dxa_player.h4
-rw-r--r--graphics/video/smk_player.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/graphics/video/dxa_player.h b/graphics/video/dxa_player.h
index 8ead07f2ae..44db6fb99e 100644
--- a/graphics/video/dxa_player.h
+++ b/graphics/video/dxa_player.h
@@ -109,8 +109,8 @@ public:
protected:
/**
- * Set palette, based on current frame
- * @param pal the palette data
+ * Set RGB palette, based on current frame
+ * @param pal the RGB palette data
*/
virtual void setPalette(byte *pal) = 0;
diff --git a/graphics/video/smk_player.h b/graphics/video/smk_player.h
index 4fe7674bc1..62db02edd9 100644
--- a/graphics/video/smk_player.h
+++ b/graphics/video/smk_player.h
@@ -110,8 +110,8 @@ public:
protected:
/**
- * Set palette, based on current frame
- * @param pal the palette data
+ * Set RGB palette, based on current frame
+ * @param pal the RGB palette data
*/
virtual void setPalette(byte *pal) = 0;