diff options
author | Torbjörn Andersson | 2013-07-20 05:32:11 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2013-07-20 05:32:11 +0200 |
commit | a790fe0e80b6b0b8c45c5d37de2eb6faf221444c (patch) | |
tree | 637ccdb608d36b2cbb8d6e85e84b632b9f3f3af0 /engines/tinsel | |
parent | a979ec6c970360a9b9b390c58847fe3c78c01e47 (diff) | |
download | scummvm-rg350-a790fe0e80b6b0b8c45c5d37de2eb6faf221444c.tar.gz scummvm-rg350-a790fe0e80b6b0b8c45c5d37de2eb6faf221444c.tar.bz2 scummvm-rg350-a790fe0e80b6b0b8c45c5d37de2eb6faf221444c.zip |
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.
Diffstat (limited to 'engines/tinsel')
-rw-r--r-- | engines/tinsel/rince.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/tinsel/rince.cpp b/engines/tinsel/rince.cpp index 3e6334f583..49666c13ca 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 |