Skip to content

Commit

Permalink
TSAGE: R2R - Renaming in scene 3285
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Nov 6, 2013
1 parent eb56ec1 commit deb3518
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions engines/tsage/ringworld2/ringworld2_scenes3.cpp
Expand Up @@ -2309,7 +2309,7 @@ bool Scene3385::Door::startAction(CursorType action, Event &event) {
return true;
}

void Scene3385::Exit1::changeScene() {
void Scene3385::SouthExit::changeScene() {
Scene3385 *scene = (Scene3385 *)R2_GLOBALS._sceneManager._scene;

R2_GLOBALS._player.disableControl(CURSOR_ARROW);
Expand Down Expand Up @@ -2411,8 +2411,8 @@ void Scene3385::postInit(SceneObjectList *OwnerList) {
_webbster.animate(ANIM_MODE_1, NULL);
_webbster.setDetails(3385, 15, -1, -1, 1, (SceneItem *) NULL);

_exit1.setDetails(Rect(103, 152, 217, 170), SHADECURSOR_DOWN, 3395);
_exit1.setDest(Common::Point(158, 151));
_southExit.setDetails(Rect(103, 152, 217, 170), SHADECURSOR_DOWN, 3395);
_southExit.setDest(Common::Point(158, 151));

_door.postInit();
_door.setPosition(Common::Point(160, 100));
Expand Down
4 changes: 2 additions & 2 deletions engines/tsage/ringworld2/ringworld2_scenes3.h
Expand Up @@ -462,7 +462,7 @@ class Scene3385 : public SceneExt {
virtual bool startAction(CursorType action, Event &event);
};

class Exit1 : public SceneExit {
class SouthExit : public SceneExit {
public:
virtual void changeScene();
};
Expand All @@ -482,7 +482,7 @@ class Scene3385 : public SceneExt {
Companion2 _companion2;
Webbster _webbster;
Door _door;
Exit1 _exit1;
SouthExit _southExit;
Action1 _action1;
SequenceManager _sequenceManager;

Expand Down

0 comments on commit deb3518

Please sign in to comment.