aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2019-07-03 13:07:19 +0200
committerEugene Sandulenko2019-09-03 17:17:09 +0200
commitce06f4eb9e0a516b370ea602318fd2eb49be9b43 (patch)
treeabb78b9de0b43ba5a2bbf7cf6373d4cdd50532e3
parent4622fb3b8026eb4cf457a7bf99e1f733cf5553b3 (diff)
downloadscummvm-rg350-ce06f4eb9e0a516b370ea602318fd2eb49be9b43.tar.gz
scummvm-rg350-ce06f4eb9e0a516b370ea602318fd2eb49be9b43.tar.bz2
scummvm-rg350-ce06f4eb9e0a516b370ea602318fd2eb49be9b43.zip
HDB: Fix compilation
-rw-r--r--engines/hdb/ai-player.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/ai-player.cpp b/engines/hdb/ai-player.cpp
index 5b7d9795c4..323b308c46 100644
--- a/engines/hdb/ai-player.cpp
+++ b/engines/hdb/ai-player.cpp
@@ -1424,7 +1424,7 @@ void aiMagicEggUse(AIEntity *e) {
int i = 0;
AIEntity *spawned = NULL;
while (aiEntList[i].type != END_AI_TYPES) {
- if (!_stricmp(aiEntList[i].luaName, e->luaFuncAction)) {
+ if (!scumm_stricmp(aiEntList[i].luaName, e->luaFuncAction)) {
spawned = g_hdb->_ai->spawn(aiEntList[i].type, e->dir, e->tileX, e->tileY, NULL, NULL, NULL, DIR_NONE, e->level, 0, 0, 1);
break;
}