diff options
author | Max Horn | 2004-10-30 21:52:57 +0000 |
---|---|---|
committer | Max Horn | 2004-10-30 21:52:57 +0000 |
commit | 5f4575ccd09790ed7bd9d59403b7cf2c866567a4 (patch) | |
tree | faf7c0eb47757e1a464cf6c5c493d1a7a2ace661 /kyra | |
parent | 40d9601b615993763252abeea13621a0a629bd88 (diff) | |
download | scummvm-rg350-5f4575ccd09790ed7bd9d59403b7cf2c866567a4.tar.gz scummvm-rg350-5f4575ccd09790ed7bd9d59403b7cf2c866567a4.tar.bz2 scummvm-rg350-5f4575ccd09790ed7bd9d59403b7cf2c866567a4.zip |
Doxygen fixes
svn-id: r15699
Diffstat (limited to 'kyra')
-rw-r--r-- | kyra/codecs.cpp | 7 | ||||
-rw-r--r-- | kyra/codecs.h | 6 |
2 files changed, 7 insertions, 6 deletions
diff --git a/kyra/codecs.cpp b/kyra/codecs.cpp index 210da4f570..a223f8310b 100644 --- a/kyra/codecs.cpp +++ b/kyra/codecs.cpp @@ -33,12 +33,13 @@ * Modified for ScummVM by Johannes Schickel ****************************************************************************/ +namespace Kyra { + /** decompress format 80 compressed data. - * @param compressed data. - * @param pointer to output uncompressed data. + * @param image_in compressed data. + * @param image_out pointer to output uncompressed data. * @returns size of uncompressed data. */ -namespace Kyra { int Compression::decode80(const uint8* image_in, uint8* image_out) { /* 0 copy 0cccpppp p diff --git a/kyra/codecs.h b/kyra/codecs.h index 58447d1a10..a7b9f11338 100644 --- a/kyra/codecs.h +++ b/kyra/codecs.h @@ -19,9 +19,9 @@ * */ -/** Various decompression routines */ -#ifndef __COMPRESSION_H -#define __COMPRESSION_H +/* Various decompression routines */ +#ifndef CODECS_H +#define CODECS_H // THIS CODE WAS TAKEN FROM FreeKyra Tools Module |