aboutsummaryrefslogtreecommitdiff
path: root/engines/voyeur
diff options
context:
space:
mode:
authorStrangerke2014-02-17 21:49:07 +0100
committerStrangerke2014-02-17 21:49:07 +0100
commit2725bc88aa538ea73baccc5f9a2ef3f131bb863a (patch)
tree1d8aaac75562a9ff62ed57d9f77493494905fbac /engines/voyeur
parent1b46f5f6160a5d3ee8a470a1a64eb7ed8994ca6c (diff)
downloadscummvm-rg350-2725bc88aa538ea73baccc5f9a2ef3f131bb863a.tar.gz
scummvm-rg350-2725bc88aa538ea73baccc5f9a2ef3f131bb863a.tar.bz2
scummvm-rg350-2725bc88aa538ea73baccc5f9a2ef3f131bb863a.zip
VOYEUR: Get rid of a magic value, replaced by DECOMPRESS_SIZE
Diffstat (limited to 'engines/voyeur')
-rw-r--r--engines/voyeur/files.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/voyeur/files.cpp b/engines/voyeur/files.cpp
index 750071aaea..3f955fd066 100644
--- a/engines/voyeur/files.cpp
+++ b/engines/voyeur/files.cpp
@@ -178,7 +178,7 @@ void BoltFilesState::nextBlock() {
/*------------------------------------------------------------------------*/
FilesManager::FilesManager() {
- _decompressSize = 0x7000;
+ _decompressSize = DECOMPRESS_SIZE;
}
bool FilesManager::openBoltLib(const Common::String &filename, BoltFile *&boltFile) {