aboutsummaryrefslogtreecommitdiff
path: root/saga/script.h
diff options
context:
space:
mode:
authorAndrew Kurushin2005-01-08 21:06:06 +0000
committerAndrew Kurushin2005-01-08 21:06:06 +0000
commit9c7a604c8bcf6903e83787dc3e8513515489d892 (patch)
tree0aa418cf80f5c628a3aa37d29119d6a8e7e73d98 /saga/script.h
parentbdb1b1eb1c21faf8dfc00ce4fb57965cdb649d8a (diff)
downloadscummvm-rg350-9c7a604c8bcf6903e83787dc3e8513515489d892.tar.gz
scummvm-rg350-9c7a604c8bcf6903e83787dc3e8513515489d892.tar.bz2
scummvm-rg350-9c7a604c8bcf6903e83787dc3e8513515489d892.zip
rename StringsList to StringsTable
svn-id: r16492
Diffstat (limited to 'saga/script.h')
-rw-r--r--saga/script.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/saga/script.h b/saga/script.h
index 662efd70e7..30a58028ae 100644
--- a/saga/script.h
+++ b/saga/script.h
@@ -207,7 +207,7 @@ struct VOICE_LUT {
struct ScriptData {
int loaded;
SCRIPT_BYTECODE *bytecode;
- StringsList strings;
+ StringsTable strings;
VOICE_LUT *voice;
};
@@ -235,7 +235,6 @@ public:
int freeScript();
SCRIPT_BYTECODE *loadBytecode(byte *bytecode_p, size_t bytecode_len);
VOICE_LUT *loadVoiceLUT(const byte *voicelut_p, size_t voicelut_len, ScriptData *script);
- int disassemble(SCRIPT_BYTECODE *script_list, StringsList *strings);
bool isInitialized() const { return _initialized; }
bool isVoiceLUTPresent() const { return _voiceLUTPresent; }
@@ -265,7 +264,7 @@ protected:
ScriptData *_currentScript;
ScriptDataBuf _dataBuf[SCRIPT_DATABUF_NUM];
ScriptThreadList _threadList;
- StringsList _mainStrings;
+ StringsTable _mainStrings;
//verb
bool _firstObjectSet;