[Scummvm-cvs-logs] scummvm master -> a790fe0e80b6b0b8c45c5d37de2eb6faf221444c
eriktorbjorn
eriktorbjorn at telia.com
Sat Jul 20 05:36:13 CEST 2013
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
a790fe0e80 TINSEL: Remove self-assignment (CID 1003626)
Commit: a790fe0e80b6b0b8c45c5d37de2eb6faf221444c
https://github.com/scummvm/scummvm/commit/a790fe0e80b6b0b8c45c5d37de2eb6faf221444c
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2013-07-19T20:32:11-07:00
Commit Message:
TINSEL: Remove self-assignment (CID 1003626)
However, dreammaster has confirmed this line was in the original
so I'm leaving it commented-out in case there is a genuine bug
still lurking there.
Changed paths:
engines/tinsel/rince.cpp
diff --git a/engines/tinsel/rince.cpp b/engines/tinsel/rince.cpp
index 3e6334f..49666c1 100644
--- a/engines/tinsel/rince.cpp
+++ b/engines/tinsel/rince.cpp
@@ -808,7 +808,8 @@ void T2MoverProcess(CORO_PARAM, const void *param) {
PokeInPalette(pmi);
pMover->actorObj = MultiInitObject(pmi);
- pMover->actorID = pMover->actorID;
+ // FIXME: This is what the original did. A bug, perhaps?
+ // pMover->actorID = pMover->actorID;
pMover->bActive = true;
// add it to display list
More information about the Scummvm-git-logs
mailing list