aboutsummaryrefslogtreecommitdiff
path: root/engines/lastexpress/game
diff options
context:
space:
mode:
authorJulien Templier2010-10-26 12:11:06 +0000
committerJulien Templier2010-10-26 12:11:06 +0000
commit8622ee1ef1fcfc71515440dd9737d7c6a11d77be (patch)
tree6b5f46c8799b09544a89d55d6aa0867ce4f79054 /engines/lastexpress/game
parent0b5cc5b9ff6abd20e5bdada69b1066b3657663e7 (diff)
downloadscummvm-rg350-8622ee1ef1fcfc71515440dd9737d7c6a11d77be.tar.gz
scummvm-rg350-8622ee1ef1fcfc71515440dd9737d7c6a11d77be.tar.bz2
scummvm-rg350-8622ee1ef1fcfc71515440dd9737d7c6a11d77be.zip
LASTEXPRESS: Turn dummy action error into a warning
svn-id: r53849
Diffstat (limited to 'engines/lastexpress/game')
-rw-r--r--engines/lastexpress/game/action.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/lastexpress/game/action.cpp b/engines/lastexpress/game/action.cpp
index e98a1dc276..139033b6c8 100644
--- a/engines/lastexpress/game/action.cpp
+++ b/engines/lastexpress/game/action.cpp
@@ -406,7 +406,9 @@ SceneIndex Action::processHotspot(const SceneHotspot &hotspot) {
//////////////////////////////////////////////////////////////////////////
// Action 0
IMPLEMENT_ACTION(dummy)
- error("Action::action_dummy: Function should never be called (hotspot action: %d)!", hotspot.action);
+ warning("Action::action_dummy: Dummy action function called (hotspot action: %d)!", hotspot.action);
+
+ return kSceneInvalid;
}
//////////////////////////////////////////////////////////////////////////