aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hdb')
-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;
}