aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/barchive.h
diff options
context:
space:
mode:
authorDenis Kasak2009-06-12 09:45:12 +0000
committerDenis Kasak2009-06-12 09:45:12 +0000
commit51672df70002602eb09a6460259ac92960aeaf53 (patch)
tree937d5498c7edb8b5f732c5c18c25d9b6403fa729 /engines/draci/barchive.h
parenta36a9a0398c440d5fd9583598ec7a39ea5ca0592 (diff)
downloadscummvm-rg350-51672df70002602eb09a6460259ac92960aeaf53.tar.gz
scummvm-rg350-51672df70002602eb09a6460259ac92960aeaf53.tar.bz2
scummvm-rg350-51672df70002602eb09a6460259ac92960aeaf53.zip
Properly documented everything (including the new DraciFont class). Reshuffled some old comments.
svn-id: r41467
Diffstat (limited to 'engines/draci/barchive.h')
-rw-r--r--engines/draci/barchive.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/draci/barchive.h b/engines/draci/barchive.h
index 0a0ecc832b..683ec50a67 100644
--- a/engines/draci/barchive.h
+++ b/engines/draci/barchive.h
@@ -31,7 +31,7 @@
namespace Draci {
/**
- * Represents individual files inside the archive
+ * Represents individual files inside the archive.
*/
struct BAFile {
@@ -40,7 +40,8 @@ struct BAFile {
byte *_data;
byte _crc;
- void closeFile(void) { //!< Releases the file data (for memory considerations)
+ /** Releases the file data (for memory considerations) */
+ void closeFile(void) {
delete _data;
_data = NULL;
}