diff options
| author | Max Horn | 2005-05-09 12:22:57 +0000 | 
|---|---|---|
| committer | Max Horn | 2005-05-09 12:22:57 +0000 | 
| commit | 34f569108cc627d4b2b8e4bc7d6a90ee5bf8aced (patch) | |
| tree | 4145d190d01fb1dd9006caa07303f769de648f99 | |
| parent | 2f1ff2afec4a760d663508b768267309d746904b (diff) | |
| download | scummvm-rg350-34f569108cc627d4b2b8e4bc7d6a90ee5bf8aced.tar.gz scummvm-rg350-34f569108cc627d4b2b8e4bc7d6a90ee5bf8aced.tar.bz2 scummvm-rg350-34f569108cc627d4b2b8e4bc7d6a90ee5bf8aced.zip | |
Fix doxygen comment
svn-id: r17999
| -rw-r--r-- | common/system.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/common/system.h b/common/system.h index 63d50530ce..c90b0aac6e 100644 --- a/common/system.h +++ b/common/system.h @@ -355,7 +355,7 @@ public:  	 * (transparency) value. Then the second color starts, and so on. So memory  	 * looks like this: R1-G1-B1-A1-R2-G2-B2-A2-R3-...  	 * -	 * @param colors	the new colors, in interleaved RGB format +	 * @param colors	the new palette data, in interleaved RGB format  	 * @param start		the first palette entry to be updated  	 * @param num		the number of palette entries to be updated  	 * @@ -370,9 +370,9 @@ public:  	 * Grabs a specified part of the currently active palette.  	 * The format is the same as for setPalette.  	 * -	 * @param buf	the buffer -	 * @param start	the first platte entry -	 * @param num	nummber of the entries +	 * @param colors	the palette data, in interleaved RGB format +	 * @param start		the first platte entry to be read +	 * @param num		the number of palette entries to be read  	 */  	virtual void grabPalette(byte *colors, uint start, uint num) = 0; | 
