1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

Convert custom HeadSpin integer types to standard types from stdint.h

This commit is contained in:
2012-01-19 21:19:26 -05:00
parent a0d54e2644
commit 5027b5a4ac
1301 changed files with 14497 additions and 14532 deletions

View File

@ -170,7 +170,7 @@ static ParamBlockDesc2 gMAXCameraLayerParamBlk
/////////////////////////////////////////////////////////////////////////////
const char *plMAXCameraLayer::kUVStrings[] = { "1", "2", "3", "4", "5", "6", "7", "8" };
const UInt8 plMAXCameraLayer::kMaxUVSrc = 8;
const uint8_t plMAXCameraLayer::kMaxUVSrc = 8;
plMAXCameraLayer::plMAXCameraLayer() :
fParmsPB(NULL),

View File

@ -146,7 +146,7 @@ public:
};
static const char *kUVStrings[];
static const UInt8 kMaxUVSrc;
static const uint8_t kMaxUVSrc;
// Pure virtual accessors for the various bitmap related elements
virtual Bitmap *GetMaxBitmap(int index = 0) { hsAssert(false, "Function call not valid on this type of layer."); return nil; }

View File

@ -133,7 +133,7 @@ plPlasmaMAXLayer *plPlasmaMAXLayer::GetPlasmaMAXLayer( Texmap *map )
class plLayerTargetContainer : public hsKeyedObject
{
static UInt32 fKeyCount;
static uint32_t fKeyCount;
public:
hsTArray<plLayerInterface *> fLayers;
@ -162,7 +162,7 @@ class plLayerTargetContainer : public hsKeyedObject
}
};
UInt32 plLayerTargetContainer::fKeyCount = 0;
uint32_t plLayerTargetContainer::fKeyCount = 0;
void plPlasmaMAXLayer::IAddConversionTarget( plLayerInterface *target )