SCUMM: Skip mousePosition resume on load for original GUI regardless of savegame version

This commit is contained in:
AndywinXp 2022-07-21 14:30:10 +02:00 committed by Lothar Serra Mari
parent 660fb3dbef
commit 559f055d37

View file

@ -1287,8 +1287,8 @@ void ScummEngine::saveLoadWithSerializer(Common::Serializer &s) {
// Don't restore the mouse position when using
// the original GUI, since the originals didn't
if (isUsingOriginalGUI()) {
s.skip(2, VER(106));
s.skip(2, VER(106));
s.skip(2);
s.skip(2);
} else {
s.syncAsSint16LE(_mouse.x, VER(20));
s.syncAsSint16LE(_mouse.y, VER(20));