Skip to content

Commit 875acd2

Browse files
committed
another pass
1 parent b6f858c commit 875acd2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+2
-134
lines changed

Core/GameEngine/Source/GameNetwork/Connection.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,12 @@ Connection::Connection() {
4343
m_frameGrouping = 1;
4444
m_isQuitting = false;
4545
m_quitTime = 0;
46-
// clearing out the latency tracker
4746
m_averageLatency = 0.0f;
4847
Int i;
4948
for(i = 0; i < CONNECTION_LATENCY_HISTORY_LENGTH; i++)
5049
{
5150
m_latencies[i] = 0.0f;
5251
}
53-
// End Add
5452
}
5553

5654
/**

Core/GameEngine/Source/GameNetwork/DownloadManager.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,7 @@ DownloadManager::DownloadManager()
3737
{
3838
m_download = NEW CDownload(this);
3939
m_wasError = m_sawEnd = false;
40-
41-
4240
m_queuedDownloads.clear();
43-
44-
//
45-
4641
m_statusString = TheGameText->fetch("FTP:StatusIdle");
4742

4843
// ----- Initialize Winsock -----

Core/GameEngine/Source/GameNetwork/FirewallHelper.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ FirewallHelperClass::FirewallHelperClass(void)
8989
m_packetID = 0;
9090
m_timeoutLength = 0;
9191
m_timeoutStart = 0;
92-
//
9392

9493
m_behavior = FIREWALL_TYPE_UNKNOWN;
9594
m_lastBehavior = FIREWALL_TYPE_UNKNOWN;

Core/GameEngine/Source/GameNetwork/NetCommandWrapperList.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737
NetCommandWrapperListNode::NetCommandWrapperListNode(NetWrapperCommandMsg *msg)
3838
{
3939
m_next = NULL;
40-
41-
4240
m_numChunks = msg->getNumChunks();
4341
m_chunksPresent = NEW Bool[m_numChunks]; // pool[]ify
4442
m_numChunksPresent = 0;

Generals/Code/GameEngine/Include/GameLogic/GameLogic.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,6 @@ class GameLogic : public SubsystemInterface, public Snapshot
294294
Bool m_shouldValidateCRCs; ///< Should we validate CRCs this frame?
295295
//-----------------------------------------------------------------------------------------------
296296

297-
//Used to for load scene
298297
Bool m_loadingScene;
299298

300299
Bool m_isInUpdate;

Generals/Code/GameEngine/Include/GameLogic/Module/DeliverPayloadAIUpdate.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,6 @@ class DeliverPayloadAIUpdateModuleData : public AIUpdateModuleData
204204
m_deliveryDecalRadius = 0;
205205

206206
m_putInContainerName.clear();
207-
// End Add
208207
}
209208

210209
static void buildFieldParse(MultiIniFieldParse& p)
@@ -295,8 +294,6 @@ class DeliverPayloadData
295294
m_visibleDropBoneName.clear();
296295
m_visiblePayloadTemplateName.clear();
297296
m_visibleSubObjectName.clear();
298-
299-
// End Add
300297
}
301298

302299
static const FieldParse* getFieldParse();

Generals/Code/GameEngine/Include/GameLogic/Module/DeployStyleAIUpdate.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,7 @@ class DeployStyleAIUpdateModuleData : public AIUpdateModuleData
5858
m_packTime = 0;
5959
m_resetTurretBeforePacking = false;
6060
m_turretsFunctionOnlyWhenDeployed = false;
61-
// Initialization necessary
6261
m_turretsMustCenterBeforePacking = FALSE;
63-
// End Add
6462
}
6563

6664
static void buildFieldParse(MultiIniFieldParse& p)

Generals/Code/GameEngine/Source/Common/GlobalData.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -814,9 +814,6 @@ GlobalData::GlobalData()
814814
m_drawEntireTerrain = FALSE;
815815
m_maxParticleCount = 0;
816816
m_maxFieldParticleCount = 30;
817-
818-
// End Add
819-
820817
m_debugAI = AI_DEBUG_NONE;
821818
m_debugSupplyCenterPlacement = FALSE;
822819
m_debugAIObstacles = FALSE;

Generals/Code/GameEngine/Source/Common/MultiplayerSettings.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ MultiplayerSettings::MultiplayerSettings()
7575
{
7676
m_initialCreditsMin = 5000;
7777

78-
//DID U MEAN m_initialCreditsMax = 10000;?
7978
m_initialCreditsMax = 10000;
8079
m_maxBeaconsPerPlayer = 3;
8180

Generals/Code/GameEngine/Source/Common/PerfTimer.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,6 @@ PerfTimer::PerfTimer( const char *identifier, Bool crashWithInfo, Int startFrame
477477
m_callCount(0),
478478
m_runningTime(0),
479479
m_outputInfo(true),
480-
//Intializations inserted
481480
m_lastFrame(-1)
482481
{
483482
}

0 commit comments

Comments
 (0)