diff options
Diffstat (limited to 'engines/saga')
-rw-r--r-- | engines/saga/detection.cpp | 2 | ||||
-rw-r--r-- | engines/saga/saveload.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp index 82c29d3389..8b5893c808 100644 --- a/engines/saga/detection.cpp +++ b/engines/saga/detection.cpp @@ -234,7 +234,7 @@ SaveStateDescriptor SagaMetaEngine::querySaveMetaInfos(const char *target, int s SaveStateDescriptor desc(slot, name); // Some older saves were not written in an endian safe fashion. - // We try to detect this here by checking for extremly high version values. + // We try to detect this here by checking for extremely high version values. // If found, we retry with the data swapped. if (version > 0xFFFFFF) { warning("This savegame is not endian safe, retrying with the data swapped"); diff --git a/engines/saga/saveload.cpp b/engines/saga/saveload.cpp index a687a68046..904f530c33 100644 --- a/engines/saga/saveload.cpp +++ b/engines/saga/saveload.cpp @@ -191,6 +191,7 @@ void SagaEngine::save(const char *fileName, const char *saveName) { // Thumbnail // First draw scene without save dialog int oldMode = _interface->getMode(); + _render->clearFlag(RF_RENDERPAUSE); // Don't show paused game message in saved thumbnail _interface->setMode(kPanelMain); _render->drawScene(); |