aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/barchive.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/draci/barchive.h')
-rw-r--r--engines/draci/barchive.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/draci/barchive.h b/engines/draci/barchive.h
index 1d366944f2..87ee301de5 100644
--- a/engines/draci/barchive.h
+++ b/engines/draci/barchive.h
@@ -43,7 +43,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() {
delete[] _data;
_data = NULL;
}
@@ -61,7 +61,7 @@ public:
~BArchive() { closeArchive(); }
void openArchive(const Common::String &path);
- void closeArchive(void);
+ void closeArchive();
uint size() const { return _fileCount; }
/**