From 4d7a2888eb12436e9270aa5ee1c0796f5f8b70ea Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Wed, 22 Jul 2015 03:27:40 -0500 Subject: [PATCH] Remove Debug --- .../winddeflection/functions/fnc_updateTrajectoryPFH.sqf | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/addons/winddeflection/functions/fnc_updateTrajectoryPFH.sqf b/addons/winddeflection/functions/fnc_updateTrajectoryPFH.sqf index 3644c10456..23d0be6b79 100644 --- a/addons/winddeflection/functions/fnc_updateTrajectoryPFH.sqf +++ b/addons/winddeflection/functions/fnc_updateTrajectoryPFH.sqf @@ -13,12 +13,11 @@ * * Public: No */ -#define ENABLE_PERFORMANCE_COUNTERS +// #define ENABLE_PERFORMANCE_COUNTERS #include "script_component.hpp" [{ - BEGIN_COUNTER(pfeh); - + // BEGIN_COUNTER(pfeh); private["_accel", "_accelRef", "_bulletSpeed", "_bulletVelocity", "_deleted", "_deltaT", "_drag", "_dragRef", "_isWind", "_lastTime", "_trueSpeed", "_trueVelocity"]; _lastTime = (_this select 0) select 0; @@ -53,7 +52,5 @@ }; } forEach GVAR(trackedBullets); - - END_COUNTER(pfeh); - + // END_COUNTER(pfeh); }, GVAR(simulationInterval), [ACE_time]] call CBA_fnc_addPerFrameHandler;