Get rid of (spurious) "variable may be used uninitialized" warning.
This happens to work around a compiler bug in GCC 4.0 on (Motorola?) Macs too. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3078 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
@@ -1269,7 +1269,7 @@ ValidateOrbits (void)
|
||||
{
|
||||
BYTE i;
|
||||
BOOLEAN InnerSystem;
|
||||
POINT old_pts[2];
|
||||
POINT old_pts[2] = { { 0, 0 }, { 0, 0 } };
|
||||
PLANET_DESC *pCurDesc;
|
||||
|
||||
InnerSystem = (BOOLEAN)(
|
||||
|
||||
Reference in New Issue
Block a user