aboutsummaryrefslogtreecommitdiff
path: root/engines/mads
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads')
-rw-r--r--engines/mads/scene.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/mads/scene.cpp b/engines/mads/scene.cpp
index da62a6335e..2875bc0b56 100644
--- a/engines/mads/scene.cpp
+++ b/engines/mads/scene.cpp
@@ -154,7 +154,8 @@ void Scene::loadScene(int sceneId, const Common::String &prefix, bool palFlag) {
_sequences.clear();
_kernelMessages.clear();
_vm->_palette->_paletteUsage.load(&_scenePaletteUsage);
- setCamera(Common::Point(0, 0));
+ if (_vm->getGameID() != GType_RexNebular)
+ setCamera(Common::Point(0, 0));
int flags = SCENEFLAG_LOAD_SHADOW;
if (_vm->_dithering)