aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine
diff options
context:
space:
mode:
authorMax Horn2009-02-15 23:49:42 +0000
committerMax Horn2009-02-15 23:49:42 +0000
commit033ade4f5cb954cd3af870136859ccf7ec6ac8aa (patch)
tree825e35ffe29fb6320e3205eb01e5be5eb7288629 /engines/sci/engine
parent296686e81217700c0b94c8fe386a396ace81de3b (diff)
downloadscummvm-rg350-033ade4f5cb954cd3af870136859ccf7ec6ac8aa.tar.gz
scummvm-rg350-033ade4f5cb954cd3af870136859ccf7ec6ac8aa.tar.bz2
scummvm-rg350-033ade4f5cb954cd3af870136859ccf7ec6ac8aa.zip
Fixed more warnings (and at least one case of uninited data)
svn-id: r38331
Diffstat (limited to 'engines/sci/engine')
-rw-r--r--engines/sci/engine/scriptconsole.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/scriptconsole.cpp b/engines/sci/engine/scriptconsole.cpp
index c2318dc634..614b8d55a8 100644
--- a/engines/sci/engine/scriptconsole.cpp
+++ b/engines/sci/engine/scriptconsole.cpp
@@ -43,8 +43,8 @@ static int c_set(struct _state *s); /* sets an int variable */
static int c_print(struct _state *s); /* prints a variable */
static int c_size(struct _state *s); /* displays the size of a resource */
static int c_dump(struct _state *s); /* gives a hex dump of a resource */
-static int c_objinfo(struct _state *s); /* shows some info about one class */
-static int c_objmethods(struct _state *s); /* Disassembles all methods of a class */
+//static int c_objinfo(struct _state *s); /* shows some info about one class */
+//static int c_objmethods(struct _state *s); /* Disassembles all methods of a class */
static int c_hexgrep(struct _state *s); /* Searches a string in one resource or resource class */
static int c_selectornames(struct _state *s); /* Displays all selector names */
static int c_kernelnames(struct _state *s); /* Displays all kernel function names */