DREAMWEB: fix thumbnails when using original save/load screens

This commit is contained in:
alxpnv 2022-10-20 10:39:38 +03:00 committed by Filippos Karapetis
parent 3b59508f6d
commit 0b1bcac6ac
3 changed files with 12 additions and 1 deletions

View File

@ -270,6 +270,8 @@ DreamWebEngine::DreamWebEngine(OSystem *syst, const DreamWebGameDescription *gam
DreamWebEngine::~DreamWebEngine() {
delete _sound;
if (_thumbnail.getPixels())
_thumbnail.free();
}
void DreamWebEngine::pauseEngineIntern(bool pause) {

View File

@ -31,6 +31,8 @@
#include "engines/engine.h"
#include "graphics/surface.h"
#include "dreamweb/console.h"
#include "dreamweb/structs.h"
@ -157,6 +159,7 @@ private:
void setSpeed(uint speed);
const DreamWebGameDescription *_gameDescription;
Graphics::Surface _thumbnail;
Common::RandomSource _rnd;
Common::String _datafilePrefix;
Common::String _speechDirName;

View File

@ -307,6 +307,8 @@ void DreamWebEngine::oldToNames() {
}
void DreamWebEngine::saveLoad() {
if (ConfMan.getBool("originalsaveload"))
createThumbnail(_thumbnail);
if (_vars._watchingTime || (_pointerMode == 2)) {
blank();
return;
@ -563,7 +565,11 @@ void DreamWebEngine::savePosition(unsigned int slot, const char *descbuf) {
outSaveFile->writeUint32LE(saveDate);
outSaveFile->writeUint32LE(saveTime);
outSaveFile->writeUint32LE(playTime);
Graphics::saveThumbnail(*outSaveFile);
if (ConfMan.getBool("originalsaveload"))
Graphics::saveThumbnail(*outSaveFile, _thumbnail);
else
Graphics::saveThumbnail(*outSaveFile);
outSaveFile->finalize();
if (outSaveFile->err()) {