Skip to content

Commit

Permalink
TSAGE: R2R - Renaming in scene 2500
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Nov 6, 2013
1 parent 0ab5a27 commit 91b4ad6
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_scenes2.cpp
Expand Up @@ -2398,7 +2398,7 @@ void Scene2455::signal() {
*
*--------------------------------------------------------------------------*/

void Scene2500::Exit1::changeScene() {
void Scene2500::WestExit::changeScene() {
Scene2500 *scene = (Scene2500 *)R2_GLOBALS._sceneManager._scene;

_enabled = false;
Expand Down Expand Up @@ -2426,8 +2426,8 @@ void Scene2500::postInit(SceneObjectList *OwnerList) {
if (R2_GLOBALS._sceneManager._previousScene == -1)
R2_GLOBALS._sceneManager._previousScene = 2000;

_exit1.setDetails(Rect(30, 50, 85, 105), EXITCURSOR_W, 2000);
_exit1.setDest(Common::Point(84, 104));
_westExit.setDetails(Rect(30, 50, 85, 105), EXITCURSOR_W, 2000);
_westExit.setDest(Common::Point(84, 104));
R2_GLOBALS._player.postInit();
R2_GLOBALS._player.animate(ANIM_MODE_1, NULL);

Expand Down
4 changes: 2 additions & 2 deletions engines/tsage/ringworld2/ringworld2_scenes2.h
Expand Up @@ -363,7 +363,7 @@ class Scene2455 : public SceneExt {
};

class Scene2500 : public SceneExt {
class Exit1 : public SceneExit {
class WestExit : public SceneExit {
public:
virtual void changeScene();
};
Expand All @@ -376,7 +376,7 @@ class Scene2500 : public SceneExt {
SceneActor _companion;
SceneActor _quinn;
SceneActor _ship;
Exit1 _exit1;
WestExit _westExit;
SequenceManager _sequenceManager;

virtual void postInit(SceneObjectList *OwnerList = NULL);
Expand Down

0 comments on commit 91b4ad6

Please sign in to comment.