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:
@ -139,15 +139,15 @@ public:
|
||||
|
||||
plClientRefMsg(): fType(-1), fWhich(-1) {};
|
||||
|
||||
plClientRefMsg(const plKey &r, UInt8 refMsgFlags, Int8 which , Int8 type)
|
||||
plClientRefMsg(const plKey &r, uint8_t refMsgFlags, int8_t which , int8_t type)
|
||||
: plRefMsg(r, refMsgFlags), fType(type), fWhich(which) {}
|
||||
|
||||
|
||||
CLASSNAME_REGISTER( plClientRefMsg );
|
||||
GETINTERFACE_ANY( plClientRefMsg, 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