diff options
-rw-r--r-- | engines/director/score.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/director/score.cpp b/engines/director/score.cpp index 4b65044baa..3ab17fc835 100644 --- a/engines/director/score.cpp +++ b/engines/director/score.cpp @@ -769,7 +769,7 @@ void Score::setStartToLabel(Common::String label) { Common::SortedArray<Label *>::iterator i; for (i = _labels->begin(); i != _labels->end(); ++i) { - if ((*i)->name == label) { + if ((*i)->name.equalsIgnoreCase(label)) { _currentFrame = (*i)->number; return; } |