From bd1cee2104b7f4e29dc299eaa9ebde61c390972a Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 20 Apr 2008 19:16:34 +0000 Subject: Cleanup. svn-id: r31626 --- engines/m4/assets.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/m4') diff --git a/engines/m4/assets.cpp b/engines/m4/assets.cpp index b712e14712..80b21119ff 100644 --- a/engines/m4/assets.cpp +++ b/engines/m4/assets.cpp @@ -255,7 +255,7 @@ int32 SpriteAsset::parseSprite(bool isBigEndian) { _palette[index].g = ((paletteEntry >> 8) & 0xFF) << 2; _palette[index].b = (paletteEntry & 0xFF) << 2; - _colorCount = MAX((int) _colorCount, (int) index); + _colorCount = MAX(_colorCount, index); } /* @@ -358,8 +358,8 @@ AssetManager::~AssetManager() { bool AssetManager::clearAssets(AssetType assetType, int32 minHash, int32 maxHash) { - minHash = MAX(0, (int) minHash); - maxHash = MIN((int) maxHash, 255); + minHash = MAX(0, minHash); + maxHash = MIN(maxHash, 255); switch (assetType) { case kAssetTypeMACH: -- cgit v1.2.3