From dcde51b065802ba38711227d85e8e9af6b02cd86 Mon Sep 17 00:00:00 2001 From: mcmartin Date: Mon, 21 Nov 2005 05:06:36 +0000 Subject: [PATCH] Fixed an initializer warning git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2012 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/planets/planets.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/sc2code/planets/planets.c b/sc2/src/sc2code/planets/planets.c index fe5c421a9..134724ed6 100644 --- a/sc2/src/sc2code/planets/planets.c +++ b/sc2/src/sc2code/planets/planets.c @@ -71,8 +71,8 @@ typedef enum static void DrawOrbitalDisplay (DRAW_ORBITAL_MODE Mode) { - RECT r = { SIS_ORG_X, SIS_ORG_Y, - SIS_SCREEN_WIDTH, SIS_SCREEN_HEIGHT }; + RECT r = { { SIS_ORG_X, SIS_ORG_Y }, + { SIS_SCREEN_WIDTH, SIS_SCREEN_HEIGHT } }; BatchGraphics ();