aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/script.h
diff options
context:
space:
mode:
authorMax Horn2010-11-18 16:38:03 +0000
committerMax Horn2010-11-18 16:38:03 +0000
commita008d1405582e1a25e5dea57b19d03899f44542d (patch)
treebbe73d970029d3acd94a5f47f266b00e4490c520 /engines/saga/script.h
parent4707b610fca45c0762e25994594fc58557945a02 (diff)
downloadscummvm-rg350-a008d1405582e1a25e5dea57b19d03899f44542d.tar.gz
scummvm-rg350-a008d1405582e1a25e5dea57b19d03899f44542d.tar.bz2
scummvm-rg350-a008d1405582e1a25e5dea57b19d03899f44542d.zip
ENGINES: Do not use MemoryReadStream where (Seekable)ReadStream suffices; avoid using 'using'
svn-id: r54323
Diffstat (limited to 'engines/saga/script.h')
-rw-r--r--engines/saga/script.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/script.h b/engines/saga/script.h
index e5054d5f4e..080b1558d6 100644
--- a/engines/saga/script.h
+++ b/engines/saga/script.h
@@ -270,7 +270,7 @@ public:
typedef Common::List<ScriptThread> ScriptThreadList;
-#define SCRIPTOP_PARAMS ScriptThread *thread, MemoryReadStream *scriptS, bool &stopParsing, bool &breakOut
+#define SCRIPTOP_PARAMS ScriptThread *thread, Common::SeekableReadStream *scriptS, bool &stopParsing, bool &breakOut
#define SCRIPTFUNC_PARAMS ScriptThread *thread, int nArgs, bool &disContinue
#define OPCODE(x) {&Script::x, #x}