Skip to content

Commit

Permalink
GOB: Fix mult object collision detection I broke in 2007
Browse files Browse the repository at this point in the history
This fixes the sidescroller levels (like the bees and butterflies)
in Little Red.

I really wonder if this breakage had other effects too...
  • Loading branch information
DrMcCoy committed Jun 15, 2012
1 parent a0add53 commit 1666d9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/gob/mult_v2.cpp
Expand Up @@ -1082,7 +1082,7 @@ void Mult_v2::animate() {
continue;

for (int j = 0; j < numAnims; j++) {
Mult_Object &animObj2 = *_renderObjs[i];
Mult_Object &animObj2 = *_renderObjs[j];
Mult_AnimData &animData2 = *(animObj2.pAnimData);

if (i == j)
Expand Down

0 comments on commit 1666d9d

Please sign in to comment.