mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-21 12:49:10 +00:00
Convert custom HeadSpin integer types to standard types from stdint.h
This commit is contained in:
@ -60,15 +60,15 @@ public:
|
||||
|
||||
plObjRefMsg(): fType(-1), fWhich(-1) {};
|
||||
|
||||
plObjRefMsg(const plKey &r, UInt8 refMsgFlags, Int8 which , Int8 type)
|
||||
plObjRefMsg(const plKey &r, uint8_t refMsgFlags, int8_t which , int8_t type)
|
||||
: plRefMsg(r, refMsgFlags), fType(type), fWhich(which) {}
|
||||
|
||||
|
||||
CLASSNAME_REGISTER( plObjRefMsg );
|
||||
GETINTERFACE_ANY( plObjRefMsg, plRefMsg );
|
||||
|
||||
Int8 fType;
|
||||
Int8 fWhich;
|
||||
int8_t fType;
|
||||
int8_t fWhich;
|
||||
|
||||
// IO - not really applicable to ref msgs, but anyway
|
||||
void Read(hsStream* stream, hsResMgr* mgr)
|
||||
|
Reference in New Issue
Block a user