Skip to content

Commit

Permalink
TSAGE: R2R - Renaming in scene 2525
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Nov 6, 2013
1 parent 91b4ad6 commit bd85c66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions engines/tsage/ringworld2/ringworld2_scenes2.cpp
Expand Up @@ -2532,7 +2532,7 @@ bool Scene2525::GlassDome::startAction(CursorType action, Event &event) {
return true;
}

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

_enabled = false;
Expand All @@ -2551,7 +2551,7 @@ void Scene2525::postInit(SceneObjectList *OwnerList) {
R2_GLOBALS._sound1.play(200);
R2_GLOBALS._sound2.play(207);

_exit1.setDetails(Rect(86, 155, 228, 168), EXITCURSOR_S, 2000);
_southExit.setDetails(Rect(86, 155, 228, 168), EXITCURSOR_S, 2000);

if (R2_INVENTORY.getObjectScene(R2_GLASS_DOME) == 2525) {
_glassDome.postInit();
Expand Down
4 changes: 2 additions & 2 deletions engines/tsage/ringworld2/ringworld2_scenes2.h
Expand Up @@ -394,7 +394,7 @@ class Scene2525 : public SceneExt {
bool startAction(CursorType action, Event &event);
};

class Exit1 : public SceneExit {
class SouthExit : public SceneExit {
public:
virtual void changeScene();
};
Expand All @@ -407,7 +407,7 @@ class Scene2525 : public SceneExt {
SceneActor _companion;
SceneActor _compressor;
GlassDome _glassDome;
Exit1 _exit1;
SouthExit _southExit;
SequenceManager _sequenceManager;

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

0 comments on commit bd85c66

Please sign in to comment.