From 46d171fc91ff0f95684fb931e6c465048cffb202 Mon Sep 17 00:00:00 2001 From: kakukri Date: Tue, 29 Dec 2015 23:46:57 +0000 Subject: [PATCH] Remove my debug printfs. git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6323 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: b27a6c6c535ad80aa57630bc396b69fdc161f70f Former-commit-id: a0a6bc2c3eef4a1af465e422404c3f3e9d7bbf9e --- src/modules/simu/simuv4/wheel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/simu/simuv4/wheel.cpp b/src/modules/simu/simuv4/wheel.cpp index f356b14f8..bbbab4dd4 100644 --- a/src/modules/simu/simuv4/wheel.cpp +++ b/src/modules/simu/simuv4/wheel.cpp @@ -374,7 +374,7 @@ void SimWheelUpdateForce(tCar *car, int index) Ft = 0.0f; Fn = 0.0f; - s = sqrt(sx*sx+sy*sy);//printf("%d sx=%g sy=%g vt=%g wrl=%g sV=%g ", index,sx,sy,vt,wrl,wheel->spinVel); + s = sqrt(sx*sx+sy*sy); { // calculate _skid and _reaction for sound. @@ -431,7 +431,7 @@ void SimWheelUpdateForce(tCar *car, int index) wheel->forces.y = Ft * SinA + Fn * CosA; wheel->spinTq = Ft * wheel->radius; wheel->sa = sa; - wheel->sx = sx;//printf("Tq=%g\n",wheel->spinTq); + wheel->sx = sx; wheel->feedBack.spinVel = wheel->spinVel; wheel->feedBack.Tq = wheel->spinTq;