Skip to content

Commit 74baa04

Browse files
committed
remove log output
1 parent 69ef2c4 commit 74baa04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

GeneralsMD/Code/GameEngine/Source/GameClient/Drawable/Update/DynamicGeometryClientUpdate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ void DynamicGeometryClientUpdate::clientUpdate( void )
191191
progress = 0.5 - (Cos(progress * PI) * 0.5);
192192
}
193193

194-
DEBUG_LOG((">>> DGCU - progress = %f", progress));
194+
// DEBUG_LOG((">>> DGCU - progress = %f", progress));
195195

196196
Real alpha = (1.0 - progress) * alpha0 + progress * alpha1;
197197
Real scale = (1.0 - progress) * scale0 + progress * scale1;

GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Behavior/ChronoDeathBehavior.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ void ChronoDeathBehavior::beginChronoDeath(const DamageInfo* damageInfo)
173173
if (update) {
174174
Real objRadius = getObject()->getGeometryInfo().getBoundingCircleRadius();
175175

176-
DEBUG_LOG((">>> CDB - objRadius = %f", objRadius));
176+
// DEBUG_LOG((">>> CDB - objRadius = %f", objRadius));
177177

178178
objRadius = MAX(10.0, MIN(objRadius, 100.0));
179179
update->setScaleMultiplier(objRadius / d->m_oclScaleFactor);

0 commit comments

Comments
 (0)