aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/smush
diff options
context:
space:
mode:
authorMax Horn2009-10-08 21:28:57 +0000
committerMax Horn2009-10-08 21:28:57 +0000
commit3399c3aeb638ae874557c72b4ab4db016ff152c8 (patch)
treef476b2a87837568da3bcdaf031f4eb61293f5086 /engines/scumm/smush
parent2ab906bafd7e154bb9e333d7e76fe2a714478efd (diff)
downloadscummvm-rg350-3399c3aeb638ae874557c72b4ab4db016ff152c8.tar.gz
scummvm-rg350-3399c3aeb638ae874557c72b4ab4db016ff152c8.tar.bz2
scummvm-rg350-3399c3aeb638ae874557c72b4ab4db016ff152c8.zip
Change doxygen inline comments from "//!" to "///" as proposed on -devel
svn-id: r44802
Diffstat (limited to 'engines/scumm/smush')
-rw-r--r--engines/scumm/smush/channel.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/scumm/smush/channel.h b/engines/scumm/smush/channel.h
index 1e023e08ff..b873bbdb30 100644
--- a/engines/scumm/smush/channel.h
+++ b/engines/scumm/smush/channel.h
@@ -36,13 +36,13 @@ namespace Scumm {
class SmushChannel {
protected:
- int32 _track; //!< the track number
- byte *_tbuffer; //!< data temporary buffer
- int32 _tbufferSize; //!< temporary buffer size
- byte *_sbuffer; //!< sound buffer
- int32 _sbufferSize; //!< sound buffer size
+ int32 _track; ///< the track number
+ byte *_tbuffer; ///< data temporary buffer
+ int32 _tbufferSize; ///< temporary buffer size
+ byte *_sbuffer; ///< sound buffer
+ int32 _sbufferSize; ///< sound buffer size
- int32 _dataSize; //!< remaining size of sound data in the iMUS buffer
+ int32 _dataSize; ///< remaining size of sound data in the iMUS buffer
bool _inData;
@@ -100,9 +100,9 @@ class ImuseChannel : public SmushChannel {
private:
int32 _srbufferSize;
- int32 _bitsize; //!< the bitsize of the original data
- int32 _rate; //!< the sampling rate of the original data
- int32 _channels; //!< the number of channels of the original data
+ int32 _bitsize; ///< the bitsize of the original data
+ int32 _rate; ///< the sampling rate of the original data
+ int32 _channels; ///< the number of channels of the original data
protected:
void decode();