SCUMM: Skip mousePosition resume on load for original GUI regardless of savegame version
This commit is contained in:
parent
660fb3dbef
commit
559f055d37
1 changed files with 2 additions and 2 deletions
|
@ -1287,8 +1287,8 @@ void ScummEngine::saveLoadWithSerializer(Common::Serializer &s) {
|
||||||
// Don't restore the mouse position when using
|
// Don't restore the mouse position when using
|
||||||
// the original GUI, since the originals didn't
|
// the original GUI, since the originals didn't
|
||||||
if (isUsingOriginalGUI()) {
|
if (isUsingOriginalGUI()) {
|
||||||
s.skip(2, VER(106));
|
s.skip(2);
|
||||||
s.skip(2, VER(106));
|
s.skip(2);
|
||||||
} else {
|
} else {
|
||||||
s.syncAsSint16LE(_mouse.x, VER(20));
|
s.syncAsSint16LE(_mouse.x, VER(20));
|
||||||
s.syncAsSint16LE(_mouse.y, VER(20));
|
s.syncAsSint16LE(_mouse.y, VER(20));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue