aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNipun Garg2019-07-03 06:02:11 +0530
committerEugene Sandulenko2019-09-03 17:17:09 +0200
commit34b9457adcb7ffc428fc8ce069e8a10dc3e79077 (patch)
tree879ef1aa06d3ec6b9ff5fbc7cdc9968d63a1a96b
parentb8a98fdcfe7e6c6c8896e85494113fd65d5ebda6 (diff)
downloadscummvm-rg350-34b9457adcb7ffc428fc8ce069e8a10dc3e79077.tar.gz
scummvm-rg350-34b9457adcb7ffc428fc8ce069e8a10dc3e79077.tar.bz2
scummvm-rg350-34b9457adcb7ffc428fc8ce069e8a10dc3e79077.zip
HDB: Delete functions missing from original
-rw-r--r--engines/hdb/ai-player.cpp8
-rw-r--r--engines/hdb/ai.h1
2 files changed, 1 insertions, 8 deletions
diff --git a/engines/hdb/ai-player.cpp b/engines/hdb/ai-player.cpp
index a249884470..eefede5fce 100644
--- a/engines/hdb/ai-player.cpp
+++ b/engines/hdb/ai-player.cpp
@@ -773,14 +773,6 @@ void aiBarrelHeavyInit(AIEntity *e) {
e->aiAction = aiBarrelHeavyAction;
}
-void aiBarrelExplosionEnd(AIEntity *e) {
- warning("STUB: AI: aiBarrelExplosionEnd required");
-}
-
-void aiBarrelExplosionAction(AIEntity *e) {
- warning("STUB: AI: aiBarrelExplosionAction required");
-}
-
void aiBarrelExplode(AIEntity *e) {
e->state = STATE_EXPLODING;
e->animDelay = e->animCycle;
diff --git a/engines/hdb/ai.h b/engines/hdb/ai.h
index f2259ba5d0..1ab2b86bb9 100644
--- a/engines/hdb/ai.h
+++ b/engines/hdb/ai.h
@@ -47,6 +47,7 @@ enum {
kPlayerTouchPWait = 16,
kMaxCineGfx = 10,
kRunToggleDelay = 2,
+ kMsgDelay = 3,
kYouGotX = -1,
kYouGotY = (kScreenHeight - 16)
};