aboutsummaryrefslogtreecommitdiff
path: root/sky/sky.h
diff options
context:
space:
mode:
authorRobert Göffringmann2004-12-15 06:48:08 +0000
committerRobert Göffringmann2004-12-15 06:48:08 +0000
commit2308ba8aafcd4d9f4f1ef7c0281177455c8e3e14 (patch)
tree1296b833b4c30432d828a7b87a7bbba8abf54284 /sky/sky.h
parent75ac1363b36158bfab3c51a5b9aafec85ea54d4e (diff)
downloadscummvm-rg350-2308ba8aafcd4d9f4f1ef7c0281177455c8e3e14.tar.gz
scummvm-rg350-2308ba8aafcd4d9f4f1ef7c0281177455c8e3e14.tar.bz2
scummvm-rg350-2308ba8aafcd4d9f4f1ef7c0281177455c8e3e14.zip
moved compacts and related static data out of the scummvm.exe into an external file
(available from www.lavosspawn.de/tmp/sky_cpt.zip) svn-id: r16053
Diffstat (limited to 'sky/sky.h')
-rw-r--r--sky/sky.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sky/sky.h b/sky/sky.h
index 08f56002c4..be0f7fa50d 100644
--- a/sky/sky.h
+++ b/sky/sky.h
@@ -52,6 +52,7 @@ class Control;
class MusicBase;
class Intro;
class Debugger;
+class SkyCompact;
class SkyEngine : public Engine {
void errorString(const char *buf_input, char *buf_output);
@@ -69,6 +70,7 @@ protected:
Mouse *_skyMouse;
Screen *_skyScreen;
Control *_skyControl;
+ SkyCompact *_skyCompact;
Debugger *_debugger;
MusicBase *_skyMusic;
@@ -81,10 +83,8 @@ public:
static bool isDemo(void);
static bool isCDVersion(void);
- static Compact *fetchCompact(uint32 a);
- static void **fetchItem(uint32 num);
-
- static void **_itemList[300];
+ static void *fetchItem(uint32 num);
+ static void *_itemList[300];
static SystemVars _systemVars;