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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user