accc: another bool conversion
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7712 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 6a5bbe8cdd5ae555080789f3f05dc8ff412fba15 Former-commit-id: c269fc6ad5859bf2bba37903b46908d591decc36
This commit is contained in:
parent
d89e46a86a
commit
dc67bd241a
1 changed files with 2 additions and 2 deletions
|
@ -693,7 +693,7 @@ ob_t* terrainSplitOb(ob_t * object)
|
|||
{
|
||||
|
||||
int numTriFound = 0;
|
||||
int found_a_tri = 0;
|
||||
bool found_a_tri = false;
|
||||
|
||||
for (int curObjSurf = 0; curObjSurf < object->numsurf; curObjSurf++)
|
||||
{
|
||||
|
@ -704,7 +704,7 @@ ob_t* terrainSplitOb(ob_t * object)
|
|||
{
|
||||
if (surfCentroid.y >= curYPos && surfCentroid.y < curYPos + distSplit)
|
||||
{
|
||||
found_a_tri = 1;
|
||||
found_a_tri = true;
|
||||
oldSurfToNewObjMap[curObjSurf] = numNewObjs;
|
||||
numTriFound++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue