diff options
author | Travis Howell | 2007-12-28 00:18:06 +0000 |
---|---|---|
committer | Travis Howell | 2007-12-28 00:18:06 +0000 |
commit | 8f540e9b672b5fea582eaa08c4d1159993d0873d (patch) | |
tree | c25bc0aadf2a46e0f02388a9415f352fc4cd5506 /engines/scumm/he | |
parent | 1eeaaab15dfb39eec074f9c4148c164a7b311e18 (diff) | |
download | scummvm-rg350-8f540e9b672b5fea582eaa08c4d1159993d0873d.tar.gz scummvm-rg350-8f540e9b672b5fea582eaa08c4d1159993d0873d.tar.bz2 scummvm-rg350-8f540e9b672b5fea582eaa08c4d1159993d0873d.zip |
Move more HE code to HE71, to reduce code size, when using DISABLE_HE option.
svn-id: r30023
Diffstat (limited to 'engines/scumm/he')
-rw-r--r-- | engines/scumm/he/intern_he.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/scumm/he/intern_he.h b/engines/scumm/he/intern_he.h index 9b51aec05a..c2f2d3aec8 100644 --- a/engines/scumm/he/intern_he.h +++ b/engines/scumm/he/intern_he.h @@ -111,7 +111,6 @@ protected: class ScummEngine_v70he : public ScummEngine_v60he { friend class ResExtractor; - friend class Wiz; protected: typedef void (ScummEngine_v70he::*OpcodeProcv70he)(); @@ -177,11 +176,12 @@ protected: void o70_setSystemMessage(); byte VAR_NUM_SOUND_CHANNELS; - byte VAR_WIZ_TCOLOR; }; #ifndef DISABLE_HE class ScummEngine_v71he : public ScummEngine_v70he { + friend class Wiz; + protected: typedef void (ScummEngine_v71he::*OpcodeProcv71he)(); struct OpcodeEntryv71he { @@ -235,6 +235,7 @@ protected: void o71_polygonOps(); void o71_polygonHit(); + byte VAR_WIZ_TCOLOR; public: /* Actor AuxQueue stuff (HE) */ AuxBlock _auxBlocks[16]; |