Skip to content

Commit

Permalink
TSAGE: R2R - Fixed ambiguity with NULL parameters in R2R setDetails c…
Browse files Browse the repository at this point in the history
…alls
  • Loading branch information
Strangerke committed Dec 29, 2011
1 parent be9cc1d commit 496b776
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engines/tsage/ringworld2/ringworld2_scenes3.cpp
Expand Up @@ -2050,9 +2050,9 @@ void Scene3375::postInit(SceneObjectList *OwnerList) {
_actor3.setup(40, tmpStrip, 1);
_actor3.animate(ANIM_MODE_1, NULL);

_actor2.setDetails(3375, -1, -1, -1, 1, NULL);
_actor3.setDetails(3375, 21, -1, -1, 1, NULL);
_actor1.setDetails(3375, -1, -1, -1, 1, NULL);
_actor2.setDetails(3375, -1, -1, -1, 1, (SceneItem *)NULL);
_actor3.setDetails(3375, 21, -1, -1, 1, (SceneItem *)NULL);
_actor1.setDetails(3375, -1, -1, -1, 1, (SceneItem *)NULL);

_actor4.postInit();
_actor4.setup(3375, 1, 1);
Expand Down

0 comments on commit 496b776

Please sign in to comment.