[Scummvm-cvs-logs] CVS: scummvm/sword2/driver animation.cpp,1.32,1.33

Torbj?rn Andersson eriktorbjorn at users.sourceforge.net
Mon Mar 22 08:09:02 CET 2004


Update of /cvsroot/scummvm/scummvm/sword2/driver
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19144

Modified Files:
	animation.cpp 
Log Message:
Fix crash introduced by recent code unification. (Mind you, I'm still
extremely grateful that the BS1 and BS2 cutscene players are finally
sharing at least some of their code now.)


Index: animation.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword2/driver/animation.cpp,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- animation.cpp	22 Mar 2004 01:40:24 -0000	1.32
+++ animation.cpp	22 Mar 2004 15:57:51 -0000	1.33
@@ -35,7 +35,7 @@
 namespace Sword2 {
 
 AnimationState::AnimationState(Sword2Engine *vm)
-	: BaseAnimationState(_vm->_mixer, _vm->_system, 640, 480), _vm(vm) {
+	: BaseAnimationState(vm->_mixer, vm->_system, 640, 480), _vm(vm) {
 }
 
 AnimationState::~AnimationState() {





More information about the Scummvm-git-logs mailing list