diff options
author | Strangerke | 2014-02-17 21:49:07 +0100 |
---|---|---|
committer | Strangerke | 2014-02-17 21:49:07 +0100 |
commit | 2725bc88aa538ea73baccc5f9a2ef3f131bb863a (patch) | |
tree | 1d8aaac75562a9ff62ed57d9f77493494905fbac /engines | |
parent | 1b46f5f6160a5d3ee8a470a1a64eb7ed8994ca6c (diff) | |
download | scummvm-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')
-rw-r--r-- | engines/voyeur/files.cpp | 2 |
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) { |