aboutsummaryrefslogtreecommitdiff
path: root/engines/draci
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/draci
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/draci')
-rw-r--r--engines/draci/barchive.h18
-rw-r--r--engines/draci/game.h6
-rw-r--r--engines/draci/sprite.h12
-rw-r--r--engines/draci/surface.h2
4 files changed, 19 insertions, 19 deletions
diff --git a/engines/draci/barchive.h b/engines/draci/barchive.h
index cb3c068289..0d77742de2 100644
--- a/engines/draci/barchive.h
+++ b/engines/draci/barchive.h
@@ -34,12 +34,12 @@ namespace Draci {
* Represents individual files inside the archive.
*/
struct BAFile {
- uint _compLength; //!< Compressed length (the same as _length if the file is uncompressed)
- uint _length; //!< Uncompressed length
- uint32 _offset; //!< Offset of file inside archive
+ uint _compLength; ///< Compressed length (the same as _length if the file is uncompressed)
+ uint _length; ///< Uncompressed length
+ uint32 _offset; ///< Offset of file inside archive
byte *_data;
byte _crc;
- byte _stopper; //!< Not used in BAR files, needed for DFW
+ byte _stopper; ///< Not used in BAR files, needed for DFW
/** Releases the file data (for memory considerations) */
void close(void) {
@@ -82,11 +82,11 @@ private:
// File stream header data
static const uint _fileHeaderSize = 6;
- Common::String _path; //!< Path to file
- BAFile *_files; //!< Internal array of files
- uint _fileCount; //!< Number of files in archive
- bool _isDFW; //!< True if the archive is in DFW format, false otherwise
- bool _opened; //!< True if the archive is opened, false otherwise
+ Common::String _path; ///< Path to file
+ BAFile *_files; ///< Internal array of files
+ uint _fileCount; ///< Number of files in archive
+ bool _isDFW; ///< True if the archive is in DFW format, false otherwise
+ bool _opened; ///< True if the archive is opened, false otherwise
void openDFW(const Common::String &path);
BAFile *loadFileDFW(uint i) const;
diff --git a/engines/draci/game.h b/engines/draci/game.h
index 6e2f6f9f61..57f0c799ae 100644
--- a/engines/draci/game.h
+++ b/engines/draci/game.h
@@ -90,8 +90,8 @@ enum InventoryConstants {
kInventoryItemHeight = 25,
kInventoryColumns = 7,
kInventoryLines = 5,
- kInventoryX = 70, //!< Used for positioning of the inventory sprite on the X axis
- kInventoryY = 30, //!< Used for positioning of the inventory sprite on the Y axis
+ kInventoryX = 70, ///< Used for positioning of the inventory sprite on the X axis
+ kInventoryY = 30, ///< Used for positioning of the inventory sprite on the Y axis
kInventorySlots = kInventoryLines * kInventoryColumns
};
@@ -398,7 +398,7 @@ private:
int _oldObjUnderCursor;
int _animUnderCursor;
- int _markedAnimationIndex; //!< Used by the Mark GPL command
+ int _markedAnimationIndex; ///< Used by the Mark GPL command
int _scheduledPalette;
};
diff --git a/engines/draci/sprite.h b/engines/draci/sprite.h
index a5859f989c..5f0a425183 100644
--- a/engines/draci/sprite.h
+++ b/engines/draci/sprite.h
@@ -74,11 +74,11 @@ public:
virtual DrawableType getType() const = 0;
protected:
- uint _width; //!< Width of the sprite
- uint _height; //!< Height of the sprite
- uint _scaledWidth; //!< Scaled width of the sprite
- uint _scaledHeight; //!< Scaled height of the sprite
- int _x, _y; //!< Sprite coordinates
+ uint _width; ///< Width of the sprite
+ uint _height; ///< Height of the sprite
+ uint _scaledWidth; ///< Scaled width of the sprite
+ uint _scaledHeight; ///< Scaled height of the sprite
+ int _x, _y; ///< Sprite coordinates
/** The time a drawable should stay on the screen
* before being replaced by another or deleted
@@ -120,7 +120,7 @@ public:
DrawableType getType() const { return kDrawableSprite; }
private:
- const byte *_data; //!< Pointer to a buffer containing raw sprite data (row-wise)
+ const byte *_data; ///< Pointer to a buffer containing raw sprite data (row-wise)
bool _mirror;
};
diff --git a/engines/draci/surface.h b/engines/draci/surface.h
index 90ed9a110b..be2e6626c5 100644
--- a/engines/draci/surface.h
+++ b/engines/draci/surface.h
@@ -60,7 +60,7 @@ private:
*/
bool _fullUpdate;
- Common::List<Common::Rect> _dirtyRects; //!< List of currently dirty rectangles
+ Common::List<Common::Rect> _dirtyRects; ///< List of currently dirty rectangles
};