[Scummvm-git-logs] scummvm master -> 8405c5d5f00da1f64906211ceb2d762617fdd8ec

sev- sev at scummvm.org
Sun Jun 3 20:37:01 CEST 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
8405c5d5f0 SAGA: Don't show pause message in saved thumbnail


Commit: 8405c5d5f00da1f64906211ceb2d762617fdd8ec
    https://github.com/scummvm/scummvm/commit/8405c5d5f00da1f64906211ceb2d762617fdd8ec
Author: David Fioramonti (dafioram at gmail.com)
Date: 2018-06-03T19:36:58+01:00

Commit Message:
SAGA: Don't show pause message in saved thumbnail

Fixes Trac#10008. Previously, the game would show
a paused game message in the thumbnail when the
game was saved using the gmm.

Changed paths:
    engines/saga/detection.cpp
    engines/saga/saveload.cpp


diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp
index 82c29d3..8b5893c 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 a687a68..904f530 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();
 





More information about the Scummvm-git-logs mailing list