diff options
author | Paul Gilbert | 2015-10-16 07:57:36 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-10-16 07:57:36 -0400 |
commit | 15918139b76be21905c36c1328ec160aed422d8e (patch) | |
tree | e53f33e5897edf0e1898189045adf11cb4fc658e | |
parent | ebd080b219300ad0533530bd7f7a0c252bfacbf2 (diff) | |
download | scummvm-rg350-15918139b76be21905c36c1328ec160aed422d8e.tar.gz scummvm-rg350-15918139b76be21905c36c1328ec160aed422d8e.tar.bz2 scummvm-rg350-15918139b76be21905c36c1328ec160aed422d8e.zip |
SHERLOCK: RT: Fix corrupted savegame thumnails
-rw-r--r-- | engines/sherlock/tattoo/tattoo_user_interface.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sherlock/tattoo/tattoo_user_interface.cpp b/engines/sherlock/tattoo/tattoo_user_interface.cpp index 6e18c3fb02..ee028f89c2 100644 --- a/engines/sherlock/tattoo/tattoo_user_interface.cpp +++ b/engines/sherlock/tattoo/tattoo_user_interface.cpp @@ -375,6 +375,7 @@ void TattooUserInterface::doStandardControl() { TattooEngine &vm = *(TattooEngine *)_vm; Events &events = *_vm->_events; People &people = *_vm->_people; + SaveManager &saves = *_vm->_saves; TattooScene &scene = *(TattooScene *)_vm->_scene; Talk &talk = *_vm->_talk; Common::Point mousePos = events.mousePos(); @@ -472,6 +473,7 @@ void TattooUserInterface::doStandardControl() { if (events._rightReleased) { // Show the verbs menu for the highlighted object _tooltipWidget.banishWindow(); + saves.createThumbnail(); _verbsWidget.load(!noDesc); _verbsWidget.summonWindow(); |