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/resource.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'engines/sci/scicore/resource.h') diff --git a/engines/sci/scicore/resource.h b/engines/sci/scicore/resource.h index 29cf38e265..75ad99f5b9 100644 --- a/engines/sci/scicore/resource.h +++ b/engines/sci/scicore/resource.h @@ -79,7 +79,9 @@ enum ResourceStatus { #define SCI_VERSION_1_EARLY 5 #define SCI_VERSION_1_LATE 6 #define SCI_VERSION_1_1 7 +#ifdef ENABLE_SCI32 #define SCI_VERSION_32 8 +#endif #define SCI_VERSION_LAST SCI_VERSION_1_LATE /* The last supported SCI version */ #define SCI_VERSION_1 SCI_VERSION_1_EARLY -- cgit v1.2.3