[Scummvm-cvs-logs] CVS: scummvm/scumm script.cpp,1.157,1.158
Jonathan Gray
khalek at users.sourceforge.net
Thu Apr 15 22:49:01 CEST 2004
- Previous message: [Scummvm-cvs-logs] CVS: residual engine.cpp,1.29,1.30
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sword2 function.cpp,1.59,1.60 logic.h,1.31,1.32 sword2.h,1.55,1.56 walker.cpp,1.36,1.37
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13166
Modified Files:
script.cpp
Log Message:
Fix regression introduced with the mac loom copy protection changes in rev 1.155, afaik all non mac versions of loom should be using that check not just pc. Fixes bug #934913
Index: script.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script.cpp,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -d -r1.157 -r1.158
--- script.cpp 5 Apr 2004 22:02:58 -0000 1.157
+++ script.cpp 16 Apr 2004 05:48:31 -0000 1.158
@@ -503,7 +503,8 @@
return 0;
} else if (var == 221 && bit == 14 && _gameId == GID_LOOM && (_features & GF_MACINTOSH)) { // For Mac Loom
return 0;
- } else if (var == 214 && bit == 15 && _gameId == GID_LOOM && (_features & GF_PC)) { // For PC Loom
+ // For all other Loom versions? PC and FM Towns at least in any event
+ } else if (var == 214 && bit == 15 && _gameId == GID_LOOM) {
return 0;
} else if (_gameId == GID_ZAK256 && var == 151 && bit == 8) {
return 0;
- Previous message: [Scummvm-cvs-logs] CVS: residual engine.cpp,1.29,1.30
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sword2 function.cpp,1.59,1.60 logic.h,1.31,1.32 sword2.h,1.55,1.56 walker.cpp,1.36,1.37
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list