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:
@ -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),
|
||||
|
@ -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; }
|
||||
|
@ -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 )
|
||||
|
Reference in New Issue
Block a user