From 551f0d31482b153271a205d9f38691eb6b2f8632 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 27 Jun 2010 20:49:02 +0000 Subject: [PATCH] - Remove fakedblocker, since it was unused. SVN r2391 (trunk) --- src/p_map.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/p_map.cpp b/src/p_map.cpp index 40344db83..34f396317 100644 --- a/src/p_map.cpp +++ b/src/p_map.cpp @@ -1212,7 +1212,6 @@ bool P_CheckPosition (AActor *thing, fixed_t x, fixed_t y, FCheckPosition &tm) { sector_t *newsec; AActor *thingblocker; - AActor *fakedblocker; fixed_t realheight = thing->height; tm.thing = thing; @@ -1279,7 +1278,6 @@ bool P_CheckPosition (AActor *thing, fixed_t x, fixed_t y, FCheckPosition &tm) // Check things first, possibly picking things up. thing->BlockingMobj = NULL; thingblocker = NULL; - fakedblocker = NULL; if (thing->player) { // [RH] Fake taller height to catch stepping up into things. thing->height = realheight + thing->MaxStepHeight; @@ -1326,7 +1324,6 @@ bool P_CheckPosition (AActor *thing, fixed_t x, fixed_t y, FCheckPosition &tm) } // Nothing is blocking us, but this actor potentially could // if there is something else to step on. - fakedblocker = BlockingMobj; thing->BlockingMobj = NULL; } else