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:
@ -51,7 +51,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plNetClient/plNetClientMgr.h"
|
||||
#include "plAgeLoader/plAgeLoader.h"
|
||||
|
||||
plNetObjectDebugger::DebugObject::DebugObject(const char* objName, plLocation& loc, UInt32 flags) :
|
||||
plNetObjectDebugger::DebugObject::DebugObject(const char* objName, plLocation& loc, uint32_t flags) :
|
||||
fLoc(loc),
|
||||
fFlags(flags)
|
||||
{
|
||||
@ -187,7 +187,7 @@ bool plNetObjectDebugger::AddDebugObject(const char* objName, const char* pageNa
|
||||
// set string matching flags
|
||||
//
|
||||
int len = strlen(objName);
|
||||
UInt32 flags=0;
|
||||
uint32_t flags=0;
|
||||
if (objName[0]=='*')
|
||||
{
|
||||
if (objName[len-1]=='*')
|
||||
|
Reference in New Issue
Block a user