Skip to content

Commit

Permalink
TSAGE: Return to R2R scene 175 - Empty Bedroom #2
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Dec 14, 2011
1 parent 907e9bc commit 991bcb6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 6 additions & 2 deletions engines/tsage/ringworld2/ringworld2_logic.cpp
Expand Up @@ -42,10 +42,14 @@ Scene *Ringworld2Game::createScene(int sceneNumber) {
case 100: return new Scene100();
// Computer console
case 125: return new Scene125();
// Empty Bedroom
case 150: return new Scene150();
case 150:
// Empty Bedroom #1
return new Scene150();
case 160:
error("Missing scene %d from group 0", sceneNumber);
case 175:
// Empty Bedroom #2
return new Scene175();
case 180:
error("Missing scene %d from group 0", sceneNumber);
case 200:
Expand Down
3 changes: 3 additions & 0 deletions engines/tsage/ringworld2/ringworld2_scenes0.h
Expand Up @@ -166,6 +166,9 @@ class Scene150: public Scene100 {
virtual void signal();
};

class Scene175: public Scene150 {
};

class Scene200: public SceneExt {
/* Objects */
class NorthDoor: public SceneActor {
Expand Down

0 comments on commit 991bcb6

Please sign in to comment.