aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/vocabulary.h
diff options
context:
space:
mode:
authorMax Horn2009-05-26 15:06:21 +0000
committerMax Horn2009-05-26 15:06:21 +0000
commit099a29b6bf5dff9a02100aaff2b70146dc1de674 (patch)
tree98b13ec2bbd0ade68265984cae5b7cd51ac5c566 /engines/sci/vocabulary.h
parentae480e2903cb650b1f04975207ed81dfdb8e95f1 (diff)
downloadscummvm-rg350-099a29b6bf5dff9a02100aaff2b70146dc1de674.tar.gz
scummvm-rg350-099a29b6bf5dff9a02100aaff2b70146dc1de674.tar.bz2
scummvm-rg350-099a29b6bf5dff9a02100aaff2b70146dc1de674.zip
SCI: Added 'opcodes' command to the debugger; fixed output wrapping in the selectors & kernelnames debugger commands
svn-id: r40919
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.