Skip to content

Commit

Permalink
WINTERMUTE: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wjp committed Jul 12, 2015
1 parent 7c2c520 commit d07de8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/wintermute/base/base_script_holder.cpp
Expand Up @@ -302,7 +302,7 @@ bool BaseScriptHolder::addScript(const char *filename) {
for (uint32 i = 0; i < _scripts.size(); i++) {
if (scumm_stricmp(_scripts[i]->_filename, filename) == 0) {
if (_scripts[i]->_state != SCRIPT_FINISHED) {
BaseEngine::LOG(0, "BaseScriptHolder::AddScript - trying to add script '%s' mutiple times (obj: '%s')", filename, getName());
BaseEngine::LOG(0, "BaseScriptHolder::AddScript - trying to add script '%s' multiple times (obj: '%s')", filename, getName());
return STATUS_OK;
}
}
Expand Down

0 comments on commit d07de8c

Please sign in to comment.