diff options
-rw-r--r-- | queen/queen.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/queen/queen.cpp b/queen/queen.cpp index b70e77e976..63083bb29b 100644 --- a/queen/queen.cpp +++ b/queen/queen.cpp @@ -125,8 +125,7 @@ void QueenEngine::roomChanged() { // logic because that would cause a circular dependency between Cutaway and // Logic... :-( - if (_logic->currentRoom() == 7) { - warning("Room 7 not yet handled!"); + if (_logic->currentRoom() == ROOM_JUNGLE_PINNACLE) { _logic->handlePinnacleRoom(); } else if (_logic->currentRoom() == FOTAQ_LOGO && _logic->gameState(VAR_INTRO_PLAYED) == 0) { |