From 6c298e964f7352d82b13d5f60d8e5cc638176dcd Mon Sep 17 00:00:00 2001 From: Alexandre Detiste Date: Sun, 14 Feb 2016 10:27:44 +0100 Subject: JANITORIAL: Typos detected with lintian & grep --- engines/wintermute/ad/ad_actor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/wintermute') diff --git a/engines/wintermute/ad/ad_actor.cpp b/engines/wintermute/ad/ad_actor.cpp index 9d5a35464a..4661d3bca0 100644 --- a/engines/wintermute/ad/ad_actor.cpp +++ b/engines/wintermute/ad/ad_actor.cpp @@ -958,13 +958,13 @@ bool AdActor::scCallMethod(ScScript *script, ScStack *stack, ScStack *thisStack, stack->correctParams(1); ScValue *val = stack->pop(); if (!val->isNative()) { - script->runtimeError("actor.%s method accepts an entity refrence only", name); + script->runtimeError("actor.%s method accepts an entity reference only", name); stack->pushNULL(); return STATUS_OK; } AdObject *obj = (AdObject *)val->getNative(); if (!obj || obj->getType() != OBJECT_ENTITY) { - script->runtimeError("actor.%s method accepts an entity refrence only", name); + script->runtimeError("actor.%s method accepts an entity reference only", name); stack->pushNULL(); return STATUS_OK; } -- cgit v1.2.3