diff options
author | Filippos Karapetis | 2009-01-06 16:10:04 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-01-06 16:10:04 +0000 |
commit | c528f888d0c227bc735a3ba2110ad9708bc1abd8 (patch) | |
tree | 460bb8a8f93e2f5d61463ecd30710470778b961a /graphics/video | |
parent | c5c4ab97c966d5ee178249e83dda4dfd97c07b97 (diff) | |
download | scummvm-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/video')
-rw-r--r-- | graphics/video/dxa_player.h | 4 | ||||
-rw-r--r-- | graphics/video/smk_player.h | 4 |
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; |