[Scummvm-cvs-logs] CVS: scummvm/scumm/imuse_digi dimuse.cpp,1.56,1.57

Pawel Kolodziejski aquadran at users.sourceforge.net
Mon Apr 5 13:20:08 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm/imuse_digi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4711/scumm/imuse_digi

Modified Files:
	dimuse.cpp 
Log Message:
remove usage VAR_SYNC. in scripts used only one time, it's set to 0

Index: dimuse.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/imuse_digi/dimuse.cpp,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- dimuse.cpp	5 Apr 2004 18:24:36 -0000	1.56
+++ dimuse.cpp	5 Apr 2004 20:07:04 -0000	1.57
@@ -726,7 +726,7 @@
 
 int32 IMuseDigital::getCurVoiceLipSyncWidth() {
 	Common::StackLock lock(_mutex, "IMuseDigital::getCutVoiceLipSyncWidth()");
-	int32 msPos = getPosInMs(kTalkSoundID) + _vm->VAR(_vm->VAR_SYNC) + 50;
+	int32 msPos = getPosInMs(kTalkSoundID) + 50;
 	int32 width = 0, height = 0;
 
 	debug(5, "IMuseDigital::getCurVoiceLipSyncWidth(%d)", kTalkSoundID);
@@ -736,7 +736,7 @@
 
 int32 IMuseDigital::getCurVoiceLipSyncHeight() {
 	Common::StackLock lock(_mutex, "IMuseDigital::getCurVoiceLipSyncHeight()");
-	int32 msPos = getPosInMs(kTalkSoundID) + _vm->VAR(_vm->VAR_SYNC) + 50;
+	int32 msPos = getPosInMs(kTalkSoundID) + 50;
 	int32 width = 0, height = 0;
 
 	debug(5, "IMuseDigital::getCurVoiceLipSyncHeight(%d)", kTalkSoundID);
@@ -754,7 +754,7 @@
 		}
 	}
 
-	int32 msPos = getPosInMs(soundId) + _vm->VAR(_vm->VAR_SYNC) + 50;
+	int32 msPos = getPosInMs(soundId) + 50;
 	int32 width = 0, height = 0;
 
 	debug(5, "IMuseDigital::getCurVoiceLipSyncWidth(%d, %d)", soundId, msPos);
@@ -772,7 +772,7 @@
 		}
 	}
 
-	int32 msPos = getPosInMs(soundId) + _vm->VAR(_vm->VAR_SYNC) + 50;
+	int32 msPos = getPosInMs(soundId) + 50;
 	int32 width = 0, height = 0;
 
 	debug(5, "IMuseDigital::getCurVoiceLipSyncHeight(%d, %d)", soundId, msPos);





More information about the Scummvm-git-logs mailing list