diff options
author | Paul Gilbert | 2015-08-16 15:06:14 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-08-16 15:06:14 -0400 |
commit | bac534438515153bef88445a5c23b595bd4f0767 (patch) | |
tree | 012df7f4148dda1cab1a5c31b182a4f32d774131 | |
parent | 169404b5f00bebc625e887183526923d5830f342 (diff) | |
download | scummvm-rg350-bac534438515153bef88445a5c23b595bd4f0767.tar.gz scummvm-rg350-bac534438515153bef88445a5c23b595bd4f0767.tar.bz2 scummvm-rg350-bac534438515153bef88445a5c23b595bd4f0767.zip |
SHERLOCK: RT: Don't allow saving the game during the intro
-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 66bba311f2..bfb35565bc 100644 --- a/engines/sherlock/tattoo/tattoo.cpp +++ b/engines/sherlock/tattoo/tattoo.cpp @@ -201,7 +201,7 @@ void TattooEngine::saveConfig() { bool TattooEngine::canSaveGameStateCurrently() { TattooUserInterface &ui = *(TattooUserInterface *)_ui; - return _canLoadSave && !ui._creditsWidget.active(); + return _canLoadSave && !ui._creditsWidget.active() && !_runningProlog; } } // End of namespace Tattoo |