diff options
| author | Paul Gilbert | 2015-06-12 21:07:43 -0400 | 
|---|---|---|
| committer | Paul Gilbert | 2015-06-12 21:07:43 -0400 | 
| commit | a17823877de5f13810b69757ef14c0b54e3de914 (patch) | |
| tree | b14bbff288bb4b0fcd3dd8a0a723ea77b12debc6 | |
| parent | 69b4ae6c6c612a5e130b0efca5a3c4869688f965 (diff) | |
| download | scummvm-rg350-a17823877de5f13810b69757ef14c0b54e3de914.tar.gz scummvm-rg350-a17823877de5f13810b69757ef14c0b54e3de914.tar.bz2 scummvm-rg350-a17823877de5f13810b69757ef14c0b54e3de914.zip | |
SHERLOCK: RT: Fix initial globals flag values at startup
| -rw-r--r-- | engines/sherlock/tattoo/tattoo.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/engines/sherlock/tattoo/tattoo.cpp b/engines/sherlock/tattoo/tattoo.cpp index ad2763ba04..0961601487 100644 --- a/engines/sherlock/tattoo/tattoo.cpp +++ b/engines/sherlock/tattoo/tattoo.cpp @@ -45,7 +45,9 @@ void TattooEngine::initialize() {  	// Initialize the base engine  	SherlockEngine::initialize(); +	// Initialise the global flags  	_flags.resize(3200); +	_flags[1] = _flags[4] = _flags[76] = true;  	// Add some more files to the cache  	_res->addToCache("walk.lib"); | 
