File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Update
Generals/Code/GameEngine/Source/GameLogic/Object/Update Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1416,7 +1416,7 @@ void ParticleUplinkCannonUpdate::xfer( Xfer *xfer )
14161416 }
14171417
14181418 // the time of last manual target click
1419- xfer->xferUnsignedInt ( & m_lastDrivingClickFrame );
1419+ xfer->xferUnsignedInt ( &m_lastDrivingClickFrame );
14201420
14211421 // the time of the 2nd last manual target click
14221422 xfer->xferUnsignedInt ( &m_2ndLastDrivingClickFrame );
Original file line number Diff line number Diff line change @@ -1519,7 +1519,7 @@ void ParticleUplinkCannonUpdate::xfer( Xfer *xfer )
15191519 // the time of last manual target click (milliseconds)
15201520#if RETAIL_COMPATIBLE_XFER_SAVE
15211521 // Retail builds stay at version 3 for compatibility, so always use old frame format
1522- xfer->xferUnsignedInt ( & m_lastDrivingClickFrame );
1522+ xfer->xferUnsignedInt ( &m_lastDrivingClickFrame );
15231523 xfer->xferUnsignedInt ( &m_2ndLastDrivingClickFrame );
15241524#if !RETAIL_COMPATIBLE_CRC
15251525 if ( xfer->getXferMode () == XFER_LOAD )
@@ -1532,7 +1532,7 @@ void ParticleUplinkCannonUpdate::xfer( Xfer *xfer )
15321532#else
15331533 if ( version >= 5 )
15341534 {
1535- xfer->xferUnsignedInt ( & m_lastDrivingClickTimeMsec );
1535+ xfer->xferUnsignedInt ( &m_lastDrivingClickTimeMsec );
15361536 xfer->xferUnsignedInt ( &m_2ndLastDrivingClickTimeMsec );
15371537 }
15381538 else
You can’t perform that action at this time.
0 commit comments