aboutsummaryrefslogtreecommitdiff
path: root/engines/cge2/fileio.h
diff options
context:
space:
mode:
authoruruk2014-05-08 10:45:38 +0200
committeruruk2014-05-08 10:45:38 +0200
commite3c4caabfaed1c91f16e05157af3555fc2ccc018 (patch)
treecb7fca4bcea33f2d3330a627fc62ac0a1d55e256 /engines/cge2/fileio.h
parent0cbed1f53bc5caf936b21fc65080479f4be22c32 (diff)
downloadscummvm-rg350-e3c4caabfaed1c91f16e05157af3555fc2ccc018.tar.gz
scummvm-rg350-e3c4caabfaed1c91f16e05157af3555fc2ccc018.tar.bz2
scummvm-rg350-e3c4caabfaed1c91f16e05157af3555fc2ccc018.zip
CGE2: Make number() static, add token() to File I/O.
Diffstat (limited to 'engines/cge2/fileio.h')
-rw-r--r--engines/cge2/fileio.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/cge2/fileio.h b/engines/cge2/fileio.h
index 0597c6ac08..a596d71341 100644
--- a/engines/cge2/fileio.h
+++ b/engines/cge2/fileio.h
@@ -113,7 +113,8 @@ public:
int32 size();
uint32 read(byte *dataPtr, uint32 dataSize);
Common::String readLine();
- int number(char *s);
+ static int number(char *s);
+ static char *token(char *s);
};
} // End of namespace CGE2