aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/text.cpp
diff options
context:
space:
mode:
authorStrangerke2011-09-06 00:16:07 +0200
committerStrangerke2011-09-06 00:16:07 +0200
commitd7695542cdd486dbb29e3cc7d0bc8c317760d185 (patch)
tree9764e3528c48f8a766b8f80f7421f0585dd0239c /engines/cge/text.cpp
parentb75a308bccae32a4fbd28be7ce61410cff050271 (diff)
downloadscummvm-rg350-d7695542cdd486dbb29e3cc7d0bc8c317760d185.tar.gz
scummvm-rg350-d7695542cdd486dbb29e3cc7d0bc8c317760d185.tar.bz2
scummvm-rg350-d7695542cdd486dbb29e3cc7d0bc8c317760d185.zip
CGE: Remove various defines and functions from "general"
Those were already present in ScummVM (thanks Fingolfin for point out)
Diffstat (limited to 'engines/cge/text.cpp')
-rw-r--r--engines/cge/text.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge/text.cpp b/engines/cge/text.cpp
index 973aadd23a..6076fdd8ff 100644
--- a/engines/cge/text.cpp
+++ b/engines/cge/text.cpp
@@ -92,7 +92,7 @@ void Text::preload(int from, int upto) {
char *s;
if ((s = strtok(line, " =,;/\t\n")) == NULL)
continue;
- if (!IsDigit(*s))
+ if (!isdigit(*s))
continue;
int ref = atoi(s);
@@ -136,7 +136,7 @@ char *Text::load(int idx, int ref) {
line[-- n] = '\0';
if ((s = strtok(line, " =,;/\t\n")) == NULL)
continue;
- if (!IsDigit(*s))
+ if (!isdigit(*s))
continue;
int r = atoi(s);