Check no longer required

Move palette function define back to correct place

svn-id: r14590
This commit is contained in:
Travis Howell 2004-08-14 02:44:16 +00:00
parent da8ad9d94b
commit 4d86651ae2
2 changed files with 1 additions and 5 deletions

View File

@ -1357,9 +1357,6 @@ void Insane::smlayer_setActorFacing(int actornum, int actnum, int frame, int dir
}
const char *Insane::handleTrsTag(int32 trsId) {
if ((_vm->_features & GF_DEMO) && (_vm->_features & GF_PC))
return 0;
debugC(DEBUG_INSANE, "Insane::handleTrsTag(%d)", trsId);
return _player->getString(trsId);
}

View File

@ -890,8 +890,6 @@ protected:
void initBGBuffers(int height);
void initCycl(const byte *ptr); // Color cycle
void setupShadowPalette(int redScale, int greenScale, int blueScale, int startColor, int endColor, int start, int end);
void drawObject(int obj, int arg);
void drawRoomObjects(int arg);
void drawRoomObject(int i, int arg);
@ -932,6 +930,7 @@ public:
protected:
void moveMemInPalRes(int start, int end, byte direction);
void setupShadowPalette(int slot, int redScale, int greenScale, int blueScale, int startColor, int endColor);
void setupShadowPalette(int redScale, int greenScale, int blueScale, int startColor, int endColor, int start, int end);
void darkenPalette(int redScale, int greenScale, int blueScale, int startColor, int endColor);
void desaturatePalette(int hueScale, int satScale, int lightScale, int startColor, int endColor);