aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/barchive.h
diff options
context:
space:
mode:
authorMax Horn2009-09-30 16:04:21 +0000
committerMax Horn2009-09-30 16:04:21 +0000
commitcc54ad650d3f7ffd2546e9d15905a0bda8327415 (patch)
tree48d04bab5473d54816016dd07dc41345adb7b999 /engines/draci/barchive.h
parent27026f65652a2afc02947303c1bde68e21724d15 (diff)
downloadscummvm-rg350-cc54ad650d3f7ffd2546e9d15905a0bda8327415.tar.gz
scummvm-rg350-cc54ad650d3f7ffd2546e9d15905a0bda8327415.tar.bz2
scummvm-rg350-cc54ad650d3f7ffd2546e9d15905a0bda8327415.zip
Remove trailing whitespaces
svn-id: r44493
Diffstat (limited to 'engines/draci/barchive.h')
-rw-r--r--engines/draci/barchive.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/draci/barchive.h b/engines/draci/barchive.h
index d9189e8652..cb3c068289 100644
--- a/engines/draci/barchive.h
+++ b/engines/draci/barchive.h
@@ -42,7 +42,7 @@ struct BAFile {
byte _stopper; //!< Not used in BAR files, needed for DFW
/** Releases the file data (for memory considerations) */
- void close(void) {
+ void close(void) {
delete[] _data;
_data = NULL;
}
@@ -53,8 +53,8 @@ public:
BArchive() : _files(NULL), _fileCount(0), _opened(false) {}
BArchive(const Common::String &path) :
- _files(NULL), _fileCount(0), _opened(false) {
- openArchive(path);
+ _files(NULL), _fileCount(0), _opened(false) {
+ openArchive(path);
}
~BArchive() { closeArchive(); }
@@ -63,7 +63,7 @@ public:
void closeArchive(void);
uint size() const { return _fileCount; }
- /**
+ /**
* Checks whether there is an archive opened. Should be called before reading
* from the archive to check whether openArchive() succeeded.
*/
@@ -78,7 +78,7 @@ private:
static const char _magicNumber[];
static const char _dfwMagicNumber[];
static const uint _archiveHeaderSize = 10;
-
+
// File stream header data
static const uint _fileHeaderSize = 6;