aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorNipun Garg2019-06-20 17:49:02 +0530
committerEugene Sandulenko2019-09-03 17:16:52 +0200
commitb2d1bbf5f50e0d8834a49df90856224b4545af24 (patch)
tree7ec9c23ff47ad8a97abea77b59e7e4b8ddb8f36b /engines
parent2868423cd30fa2be11e7254e82e1e37b937afa77 (diff)
downloadscummvm-rg350-b2d1bbf5f50e0d8834a49df90856224b4545af24.tar.gz
scummvm-rg350-b2d1bbf5f50e0d8834a49df90856224b4545af24.tar.bz2
scummvm-rg350-b2d1bbf5f50e0d8834a49df90856224b4545af24.zip
HDB: Remove cineLockPlayer + cineUnlockPlayer stub
Diffstat (limited to 'engines')
-rw-r--r--engines/hdb/lua-script.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hdb/lua-script.cpp b/engines/hdb/lua-script.cpp
index fc10a9de54..f240bcb030 100644
--- a/engines/hdb/lua-script.cpp
+++ b/engines/hdb/lua-script.cpp
@@ -140,12 +140,12 @@ static int cineStartMap(lua_State *L) {
}
static int cineLockPlayer(lua_State *L) {
- warning("STUB: CINE LOCK PLAYER");
+ g_hdb->_ai->cineLockPlayer();
return 0;
}
static int cineUnlockPlayer(lua_State *L) {
- warning("STUB: CINE UNLOCK PLAYER");
+ g_hdb->_ai->cineUnlockPlayer();
return 0;
}