diff options
author | Johannes Schickel | 2009-03-01 03:31:52 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-03-01 03:31:52 +0000 |
commit | 3b16073a38f1869698ed7ea0066d91f4fbfc7e04 (patch) | |
tree | 227139470e3eadfb24d38da7fc3976770b0d3695 | |
parent | 3fb5e15072c9769a8d793711aef11360a9a8c48a (diff) | |
download | scummvm-rg350-3b16073a38f1869698ed7ea0066d91f4fbfc7e04.tar.gz scummvm-rg350-3b16073a38f1869698ed7ea0066d91f4fbfc7e04.tar.bz2 scummvm-rg350-3b16073a38f1869698ed7ea0066d91f4fbfc7e04.zip |
Fix warnings.
svn-id: r38997
-rw-r--r-- | engines/sci/scicore/vocab_debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/scicore/vocab_debug.cpp b/engines/sci/scicore/vocab_debug.cpp index cc6039afc0..603c2cdf07 100644 --- a/engines/sci/scicore/vocab_debug.cpp +++ b/engines/sci/scicore/vocab_debug.cpp @@ -517,7 +517,7 @@ static char **vocabulary_get_knames11(ResourceManager *resmgr, int *count) { ... */ char **t = NULL; - unsigned int size = 64, pos = 3; + //unsigned int size = 64, pos = 3; int len; Resource *r = resmgr->findResource(kResourceTypeVocab, VOCAB_RESOURCE_KNAMES, 0); if(r == NULL) // failed to open vocab.999 (happens with SCI1 demos) |