1
0
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:
2012-01-19 21:19:26 -05:00
parent a0d54e2644
commit 5027b5a4ac
1301 changed files with 14497 additions and 14532 deletions

View File

@ -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;