mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-20 20:29:10 +00:00
Convert custom HeadSpin integer types to standard types from stdint.h
This commit is contained in:
@ -680,20 +680,20 @@ void plAvBrainClimb::IProbeEnvironment()
|
||||
|
||||
// *** would be cool if we could hint that these should be batched for spatial coherence optimization
|
||||
plLOSRequestMsg *upReq = TRACKED_NEW plLOSRequestMsg(ourKey, start, up, plSimDefs::kLOSDBCustom, plLOSRequestMsg::kTestAny, plLOSRequestMsg::kReportHit);
|
||||
upReq->SetRequestID(static_cast<UInt32>(plClimbMsg::kUp));
|
||||
upReq->SetRequestID(static_cast<uint32_t>(plClimbMsg::kUp));
|
||||
upReq->Send();
|
||||
|
||||
plLOSRequestMsg *downReq = TRACKED_NEW plLOSRequestMsg(ourKey, start, down, plSimDefs::kLOSDBCustom, plLOSRequestMsg::kTestAny, plLOSRequestMsg::kReportHit);
|
||||
downReq->SetRequestID(static_cast<UInt32>(plClimbMsg::kDown));
|
||||
downReq->SetRequestID(static_cast<uint32_t>(plClimbMsg::kDown));
|
||||
downReq->Send();
|
||||
|
||||
plLOSRequestMsg *leftReq = TRACKED_NEW plLOSRequestMsg(ourKey, start, left, plSimDefs::kLOSDBCustom, plLOSRequestMsg::kTestAny, plLOSRequestMsg::kReportHit);
|
||||
leftReq->SetRequestID(static_cast<UInt32>(plClimbMsg::kLeft));
|
||||
leftReq->SetRequestID(static_cast<uint32_t>(plClimbMsg::kLeft));
|
||||
leftReq->SetRequestType(plSimDefs::kLOSDBCustom);
|
||||
leftReq->Send();
|
||||
|
||||
plLOSRequestMsg *rightReq = TRACKED_NEW plLOSRequestMsg(ourKey, start, right, plSimDefs::kLOSDBCustom, plLOSRequestMsg::kTestAny, plLOSRequestMsg::kReportHit);
|
||||
rightReq->SetRequestID(static_cast<UInt32>(plClimbMsg::kRight));
|
||||
rightReq->SetRequestID(static_cast<uint32_t>(plClimbMsg::kRight));
|
||||
rightReq->Send();
|
||||
|
||||
fOldPhysicallyBlockedDirections = fPhysicallyBlockedDirections;
|
||||
|
Reference in New Issue
Block a user