aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/scicore/vocab_debug.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2009-03-30 07:53:32 +0000
committerFilippos Karapetis2009-03-30 07:53:32 +0000
commite130aecc4f2650d86a41ee4d963b66e5421226bb (patch)
tree60b3a461c58166145fe5ec262a15c1cf94271d78 /engines/sci/scicore/vocab_debug.cpp
parent30473e313d8e4513a11dd29ea353db297d5223b4 (diff)
downloadscummvm-rg350-e130aecc4f2650d86a41ee4d963b66e5421226bb.tar.gz
scummvm-rg350-e130aecc4f2650d86a41ee4d963b66e5421226bb.tar.bz2
scummvm-rg350-e130aecc4f2650d86a41ee4d963b66e5421226bb.zip
Wrapped all the still WIP SCI32-specific code around appropriate ifdef blocks. SCI32 has fundamental differences from previous SCI versions (e.g. direct point addressing is no longer possible), most of SCI32 games use SVGA resolutions and currently a lot of SCI32 specific code is missing (like, for example, the newer string and array handling functions, the widget system etc). This has been done in the same manner as in the SCUMM and SAGA engines.
svn-id: r39750
Diffstat (limited to 'engines/sci/scicore/vocab_debug.cpp')
-rw-r--r--engines/sci/scicore/vocab_debug.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sci/scicore/vocab_debug.cpp b/engines/sci/scicore/vocab_debug.cpp
index 189024770d..deb2c2b2cf 100644
--- a/engines/sci/scicore/vocab_debug.cpp
+++ b/engines/sci/scicore/vocab_debug.cpp
@@ -569,8 +569,11 @@ char **vocabulary_get_knames(ResourceManager *resmgr, int *count) {
case SCI_VERSION_1_LATE:
return vocabulary_get_knames1(resmgr, count);
case SCI_VERSION_1_1:
+ return vocabulary_get_knames11(resmgr, count);
+#ifdef ENABLE_SCI32
case SCI_VERSION_32:
return vocabulary_get_knames11(resmgr, count);
+#endif
default:
return 0;
}