aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/parser.h
diff options
context:
space:
mode:
authorNicola Mettifogo2007-02-20 09:17:28 +0000
committerNicola Mettifogo2007-02-20 09:17:28 +0000
commit5886d3ed7f6bdcc957174d33a3f31bcd68a9739f (patch)
treebf6ede51d6e1111adecfcc9863cee2153886c71e /engines/parallaction/parser.h
parent1bd5f9932b45e92dd73097df26acfe127df39c05 (diff)
downloadscummvm-rg350-5886d3ed7f6bdcc957174d33a3f31bcd68a9739f.tar.gz
scummvm-rg350-5886d3ed7f6bdcc957174d33a3f31bcd68a9739f.tar.bz2
scummvm-rg350-5886d3ed7f6bdcc957174d33a3f31bcd68a9739f.zip
cleanup and small fixes
svn-id: r25738
Diffstat (limited to 'engines/parallaction/parser.h')
-rw-r--r--engines/parallaction/parser.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/engines/parallaction/parser.h b/engines/parallaction/parser.h
index ea9b70ee5c..51b2787ced 100644
--- a/engines/parallaction/parser.h
+++ b/engines/parallaction/parser.h
@@ -36,18 +36,14 @@ char *parseComment(ArchivedFile *file);
uint16 fillBuffers(Common::SeekableReadStream &stream, bool errorOnEOF = false);
char *parseNextToken(char *s, char *tok, uint16 count, const char *brk);
-//uint16 tableFillBuffers(Common::SeekableReadStream &stream);
-//uint16 scriptFillBuffers(ArchivedFile *file);
-
-
extern char _tokens[][40];
-class LocScript : public Common::SeekableReadStream {
+class Script : public Common::SeekableReadStream {
const char* _src;
public:
- LocScript(const char* s);
+ Script(const char* s);
uint32 read(void *dataPtr, uint32 dataSize);