Fix possibly uninitialized variable

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@9190 4a71c877-e1ca-e34f-864e-861f7616d084
master
Per Inge Mathisen 2010-01-14 14:29:26 +00:00 committed by Git SVN Gateway
parent 817ab66c04
commit a5d3cad363
1 changed files with 1 additions and 1 deletions

View File

@ -624,7 +624,7 @@ static const char *feature_names[] =
// splatter artifact gifts randomly about.
void addMultiPlayerRandomArtifacts(uint8_t quantity, FEATURE_TYPE type)
{
FEATURE *pF;
FEATURE *pF = NULL;
int i, featureStat, count;
uint32_t x, y;
uint8_t player = ANYPLAYER;