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/cge | |
| 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/cge')
| -rw-r--r-- | engines/cge/text.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge/text.cpp b/engines/cge/text.cpp index 9fb3c95e93..fd4120d49d 100644 --- a/engines/cge/text.cpp +++ b/engines/cge/text.cpp @@ -72,7 +72,7 @@ int16 Text::count() { strcpy(tmpStr, line.c_str()); if ((s = strtok(tmpStr, " =,;/\t\n")) == NULL) continue; - if (!isDigit(*s)) + if (!Common::isDigit(*s)) continue; counter++; @@ -105,7 +105,7 @@ void Text::load() { strcpy(tmpStr, line.c_str()); if ((s = strtok(tmpStr, " =,;/\t\n")) == NULL) continue; - if (!isDigit(*s)) + if (!Common::isDigit(*s)) continue; int r = atoi(s); |
