Removed initializers from static globals that do not need them (for clarity); fixed others that do need to be reinited; bug #870

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2305 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
avolkov
2006-04-05 20:34:03 +00:00
parent b05b39a645
commit 3d92d1f0c7
+3 -2
View File
@@ -110,7 +110,7 @@ enum
PIK_ALIEN
};
static int LastAlien = FOT_ALIEN;
static int LastAlien;
static void
SelectAlienZOQ (void)
@@ -153,10 +153,11 @@ SelectAlienPIK (void)
static void
ZFPTalkSegue (COUNT wait_track)
{
LastAlien = PIK_ALIEN;
LastAlien = FOT_ALIEN;
SelectAlienZOQ ();
AlienTalkSegue (wait_track);
}
static void
ExitConversation (RESPONSE_REF R)
{