TSAGE: R2R - Renaming in scene 2435

This commit is contained in:
Strangerke 2013-11-06 01:30:44 +01:00
parent 7e1db7ddcd
commit ed23f74a51
2 changed files with 5 additions and 5 deletions

View File

@ -1673,7 +1673,7 @@ bool Scene2435::Astor::startAction(CursorType action, Event &event) {
}
}
void Scene2435::Exit1::changeScene() {
void Scene2435::SouthExit::changeScene() {
Scene2435 *scene = (Scene2435 *)R2_GLOBALS._sceneManager._scene;
_enabled = false;
@ -1693,8 +1693,8 @@ void Scene2435::postInit(SceneObjectList *OwnerList) {
_stripManager.addSpeaker(&_quinnSpeaker);
_stripManager.addSpeaker(&_seekerSpeaker);
_stripManager.addSpeaker(&_pharishaSpeaker);
_exit1.setDetails(Rect(142, 155, 207, 167), EXITCURSOR_S, 2000);
_exit1.setDest(Common::Point(175, 160));
_southExit.setDetails(Rect(142, 155, 207, 167), EXITCURSOR_S, 2000);
_southExit.setDest(Common::Point(175, 160));
_astor.postInit();
_astor.setup(2005, 3, 1);
_astor.setPosition(Common::Point(219, 106));

View File

@ -238,7 +238,7 @@ class Scene2435 : public SceneExt {
bool startAction(CursorType action, Event &event);
};
class Exit1 : public SceneExit {
class SouthExit : public SceneExit {
public:
virtual void changeScene();
};
@ -251,7 +251,7 @@ public:
NamedHotspot _rightWindow;
Companion _companion;
Astor _astor;
Exit1 _exit1;
SouthExit _southExit;
SequenceManager _sequenceManager;
virtual void postInit(SceneObjectList *OwnerList = NULL);