diff options
author | Paul Gilbert | 2014-04-11 08:52:18 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-04-11 08:52:18 -0400 |
commit | 9ef9dd24c273950328a4f5ea99b36c91b4a4de81 (patch) | |
tree | 6209b143d1c333e4dfe4607cd1ee2cfc875799db | |
parent | d8c35b71dbd310d2012d501529867faab4875b29 (diff) | |
download | scummvm-rg350-9ef9dd24c273950328a4f5ea99b36c91b4a4de81.tar.gz scummvm-rg350-9ef9dd24c273950328a4f5ea99b36c91b4a4de81.tar.bz2 scummvm-rg350-9ef9dd24c273950328a4f5ea99b36c91b4a4de81.zip |
MADS: Replace warning with call to stubbed unhandledAction method
-rw-r--r-- | engines/mads/scene.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/scene.cpp b/engines/mads/scene.cpp index 02a066a0c6..9f8c922861 100644 --- a/engines/mads/scene.cpp +++ b/engines/mads/scene.cpp @@ -489,7 +489,7 @@ void Scene::doAction() { } if (_action._inProgress) - warning("TODO: sub_1D9DE"); + _vm->_game->unhandledAction(); } } |