From dbfddba4cfbcfee8e588e68cd2ce92c7e1d898de Mon Sep 17 00:00:00 2001 From: Nipun Garg Date: Thu, 27 Jun 2019 22:28:50 +0530 Subject: HDB: Add stubbed aiBarrelExplosionEnd(int, int) --- engines/hdb/ai-player.cpp | 4 ++++ engines/hdb/ai-player.h | 1 + 2 files changed, 5 insertions(+) (limited to 'engines') diff --git a/engines/hdb/ai-player.cpp b/engines/hdb/ai-player.cpp index 05e8035954..e3997494c8 100644 --- a/engines/hdb/ai-player.cpp +++ b/engines/hdb/ai-player.cpp @@ -304,6 +304,10 @@ void aiBarrelExplodeSpread(AIEntity *e) { warning("STUB: AI: aiBarrelExplodeSpread required"); } +void aiBarrelExplosionEnd(int x, int y) { + warning("STUB: AI: aiBarrelExplosionEnd(int, int) required"); +} + void aiBarrelBlowup(AIEntity *e, int x, int y) { warning("STUB: AI: aiBarrelBlowup required"); } diff --git a/engines/hdb/ai-player.h b/engines/hdb/ai-player.h index b78d03cd62..0ab9c162c9 100644 --- a/engines/hdb/ai-player.h +++ b/engines/hdb/ai-player.h @@ -62,6 +62,7 @@ void aiBarrelExplodeInit(AIEntity *e); void aiBarrelExplodeInit2(AIEntity *e); void aiBarrelExplodeAction(AIEntity *e); void aiBarrelExplodeSpread(AIEntity *e); +void aiBarrelExplosionEnd(int x, int y); void aiBarrelBlowup(AIEntity *e, int x, int y); void aiMaintBotInit(AIEntity *e); -- cgit v1.2.3