Skip to content

Commit

Permalink
Backport fix of using uninitialized variables from trunk.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gna.org/svn/warzone/branches/2.0@2630 4a71c877-e1ca-e34f-864e-861f7616d084
  • Loading branch information
perim committed Oct 26, 2007
1 parent 72517d8 commit 9432bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/warcam.c
Expand Up @@ -726,7 +726,7 @@ UDWORD droidHeight,mapHeight,difHeight;
PROPULSION_STATS *psPropStats;
SDWORD pitch;
BOOL bGotFlying = FALSE;
SDWORD xPos,yPos,zPos;
SDWORD xPos = 0, yPos = 0, zPos = 0;

bTooLow = FALSE;
if(trackingCamera.target->type == OBJ_DROID)
Expand Down

0 comments on commit 9432bc2

Please sign in to comment.