[Scummvm-cvs-logs] CVS: scummvm/scumm script_v5.cpp,1.128,1.129

Travis Howell kirben at users.sourceforge.net
Sat Jul 5 23:44:17 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv26660/scumm

Modified Files:
	script_v5.cpp 
Log Message:

More fixes from Hibernatus


Index: script_v5.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v5.cpp,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -d -r1.128 -r1.129
--- script_v5.cpp	30 Jun 2003 23:18:19 -0000	1.128
+++ script_v5.cpp	6 Jul 2003 06:36:26 -0000	1.129
@@ -681,8 +681,7 @@
 			// Assuming this is correct, we might not actually need it, as our
 			// initCharset automatically calls loadCharset for GF_SMALL_HEADER, if needed.
 			// Loom ega at least does need this and v2 has its own cursor command
-			// so making this for OLD_BUNDLE. Going by disassembly zak256 does not have a
-			// sub op for this case, not sure about loomcd
+			// so making this for OLD_BUNDLE.
 		} else {
 			getWordVararg(table);
 			for (i = 0; i < 16; i++)
@@ -2023,7 +2022,7 @@
 		int result = 0;
 		switch (b) {
 		case 0:
-			result = _sound->pollCD() != 0;
+			result = _sound->pollCD() == 0;
 			break;
 		case 0xFC:
 			// TODO: Unpause (resume) audio track. We'll have to extend Sound and OSystem for this.





More information about the Scummvm-git-logs mailing list