mirror of
https://github.com/halpz/re3.git
synced 2025-07-05 03:30:44 +00:00
checked some of streaming for VC changes
This commit is contained in:
@ -501,13 +501,13 @@ CPathFind::PreparePathData(void)
|
||||
}
|
||||
for(i = 0; i < NUMDETACHED_CARS; i++)
|
||||
for(j = 0; j < 12; j++)
|
||||
if(DetachedInfoForTilePeds[i*12 + j].type == NodeTypeExtern){
|
||||
if(DetachedInfoForTileCars[i*12 + j].type == NodeTypeExtern){
|
||||
// MI:%d here but no argument for it
|
||||
if(DetachedInfoForTilePeds[i*12 + j].numLeftLanes < 0)
|
||||
if(DetachedInfoForTileCars[i*12 + j].numLeftLanes < 0)
|
||||
printf("ILLEGAL BLOCK. NEGATIVE NUMBER OF LANES (Obj:%d)\n", i);
|
||||
if(DetachedInfoForTilePeds[i*12 + j].numRightLanes < 0)
|
||||
if(DetachedInfoForTileCars[i*12 + j].numRightLanes < 0)
|
||||
printf("ILLEGAL BLOCK. NEGATIVE NUMBER OF LANES (Obj:%d)\n", i);
|
||||
if(DetachedInfoForTilePeds[i*12 + j].numLeftLanes + DetachedInfoForTilePeds[i*12 + j].numRightLanes <= 0)
|
||||
if(DetachedInfoForTileCars[i*12 + j].numLeftLanes + DetachedInfoForTileCars[i*12 + j].numRightLanes <= 0)
|
||||
printf("ILLEGAL BLOCK. NO LANES IN NODE (Obj:%d)\n", i);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user