diff options
author | Max Horn | 2012-02-20 16:03:39 +0100 |
---|---|---|
committer | Max Horn | 2012-02-20 16:18:27 +0100 |
commit | 4f8665fc836898ebf54fc73b1061125b748183bc (patch) | |
tree | ae393cd0822fab01bdcc38bd003ab186955eb270 /engines/queen | |
parent | 658080deeda79d20ea40643569fbcb072573e7cf (diff) | |
download | scummvm-rg350-4f8665fc836898ebf54fc73b1061125b748183bc.tar.gz scummvm-rg350-4f8665fc836898ebf54fc73b1061125b748183bc.tar.bz2 scummvm-rg350-4f8665fc836898ebf54fc73b1061125b748183bc.zip |
COMMON: Move isFoo functions to namespace Common, add doxygen comments
Diffstat (limited to 'engines/queen')
-rw-r--r-- | engines/queen/talk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/queen/talk.cpp b/engines/queen/talk.cpp index 72cb40bd7a..94bc105bb0 100644 --- a/engines/queen/talk.cpp +++ b/engines/queen/talk.cpp @@ -657,7 +657,7 @@ void Talk::stringAnimation(const SpeechParameters *parameters, int startFrame, i } else if (parameters->animation[0] == 'E') { // Talking head animation return; - } else if (!isDigit(parameters->animation[0])) { + } else if (!Common::isDigit(parameters->animation[0])) { debug(6, "Error in speak string animation: '%s'", parameters->animation); return; } else |