aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo/tattoo.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-08-16 15:06:14 -0400
committerPaul Gilbert2015-08-16 15:06:14 -0400
commitbac534438515153bef88445a5c23b595bd4f0767 (patch)
tree012df7f4148dda1cab1a5c31b182a4f32d774131 /engines/sherlock/tattoo/tattoo.cpp
parent169404b5f00bebc625e887183526923d5830f342 (diff)
downloadscummvm-rg350-bac534438515153bef88445a5c23b595bd4f0767.tar.gz
scummvm-rg350-bac534438515153bef88445a5c23b595bd4f0767.tar.bz2
scummvm-rg350-bac534438515153bef88445a5c23b595bd4f0767.zip
SHERLOCK: RT: Don't allow saving the game during the intro
Diffstat (limited to 'engines/sherlock/tattoo/tattoo.cpp')
-rw-r--r--engines/sherlock/tattoo/tattoo.cpp2
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