diff options
Diffstat (limited to 'src/hexen/po_man.c')
-rw-r--r-- | src/hexen/po_man.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/hexen/po_man.c b/src/hexen/po_man.c index 4429c3e0..196f20d3 100644 --- a/src/hexen/po_man.c +++ b/src/hexen/po_man.c @@ -1119,10 +1119,8 @@ static boolean CheckMobjBlocking(seg_t * seg, polyobj_t * po) static void InitBlockMap(void) { int i; - int j; seg_t **segList; - int area; int leftX, rightX; int topY, bottomY; @@ -1158,8 +1156,8 @@ static void InitBlockMap(void) topY = (*segList)->v1->y; } } - area = ((rightX >> FRACBITS) - (leftX >> FRACBITS)) * - ((topY >> FRACBITS) - (bottomY >> FRACBITS)); +// area = ((rightX >> FRACBITS) - (leftX >> FRACBITS)) * +// ((topY >> FRACBITS) - (bottomY >> FRACBITS)); // fprintf(stdaux, "Area of Polyobj[%d]: %d\n", polyobjs[i].tag, area); // fprintf(stdaux, "\t[%d]\n[%d]\t\t[%d]\n\t[%d]\n", topY>>FRACBITS, |