[Scummvm-cvs-logs] CVS: scummvm/scumm script_v5.cpp,1.180,1.181
Travis Howell
kirben at users.sourceforge.net
Thu Sep 11 02:37:23 CEST 2003
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv9953/scumm
Modified Files:
script_v5.cpp
Log Message:
Original load/save screen fix from Hibernatus
Allows indy3ega/loom screens to work, although load/save are stuba.
Index: script_v5.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v5.cpp,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -d -r1.180 -r1.181
--- script_v5.cpp 11 Sep 2003 09:12:24 -0000 1.180
+++ script_v5.cpp 11 Sep 2003 09:28:50 -0000 1.181
@@ -891,8 +891,12 @@
warning("stub saveVars to %s", _scriptPointer);
_scriptPointer += a + 1;
break;
+ case 0x04:
+ return;
+ break;
case 0x1F: // close file
warning("stub saveVars close file");
+ return;
break;
}
@@ -922,8 +926,12 @@
warning("stub loadVars from %s", _scriptPointer);
_scriptPointer += a + 1;
break;
+ case 0x04:
+ return;
+ break;
case 0x1F: // close file
warning("stub loadVars close file");
+ return;
break;
}
More information about the Scummvm-git-logs
mailing list