From e130aecc4f2650d86a41ee4d963b66e5421226bb Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Mon, 30 Mar 2009 07:53:32 +0000 Subject: 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 --- engines/sci/scicore/vocab_debug.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'engines/sci/scicore/vocab_debug.cpp') 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; } -- cgit v1.2.3