diff options
author | Paul Gilbert | 2015-06-11 21:07:19 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-06-11 21:07:19 -0400 |
commit | f812447274fc1de46560e4e611c9d4cb9bf39beb (patch) | |
tree | 3c370364e88193d87a5b27c9dd037605eb989fcc /engines/sherlock | |
parent | 469ad70527a7695aac963b27549313e53607d855 (diff) | |
download | scummvm-rg350-f812447274fc1de46560e4e611c9d4cb9bf39beb.tar.gz scummvm-rg350-f812447274fc1de46560e4e611c9d4cb9bf39beb.tar.bz2 scummvm-rg350-f812447274fc1de46560e4e611c9d4cb9bf39beb.zip |
SHERLOCK: RT: Increase size of global flags array
Diffstat (limited to 'engines/sherlock')
-rw-r--r-- | engines/sherlock/tattoo/tattoo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/tattoo/tattoo.cpp b/engines/sherlock/tattoo/tattoo.cpp index 13bffbb94d..ad2763ba04 100644 --- a/engines/sherlock/tattoo/tattoo.cpp +++ b/engines/sherlock/tattoo/tattoo.cpp @@ -45,7 +45,7 @@ void TattooEngine::initialize() { // Initialize the base engine SherlockEngine::initialize(); - _flags.resize(100 * 8); + _flags.resize(3200); // Add some more files to the cache _res->addToCache("walk.lib"); |