aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/vocabulary.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/vocabulary.h')
-rw-r--r--engines/sci/vocabulary.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/vocabulary.h b/engines/sci/vocabulary.h
index 9276a399d6..3f121fcbfb 100644
--- a/engines/sci/vocabulary.h
+++ b/engines/sci/vocabulary.h
@@ -48,7 +48,6 @@ class ResourceManager;
struct opcode {
int type;
- int number;
Common::String name;
};
@@ -186,14 +185,15 @@ struct parse_tree_node_t {
/**
* Fills the given StringList with selector names.
- * Returns true upon success, false oterwise.
+ * Returns true upon success, false otherwise.
*/
bool vocab_get_snames(ResourceManager *resmgr, bool isOldSci0, Common::StringList &selectorNames);
/**
* Obtain the list of opcodes.
+ * Returns true upon success, false otherwise.
*/
-void vocab_get_opcodes(ResourceManager *resmgr, Common::Array<opcode> &opcodes);
+bool vocab_get_opcodes(ResourceManager *resmgr, Common::Array<opcode> &opcodes);
/**
* Fills a StringList with kernel function names.