From 2112a37f58b58ff3c49681de53534f41f68bbafe Mon Sep 17 00:00:00 2001 From: gewlitys Date: Sat, 10 May 2003 18:21:06 +0000 Subject: [PATCH] Fixed minor glitches in main window borders (bug #307 parts 1,2,3) -Mika git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@948 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/ChangeLog | 1 + sc2/src/sc2code/border.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sc2/ChangeLog b/sc2/ChangeLog index 0478bc2f1..fc6af1d08 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,5 @@ Changes towards version 0.3: +- Fixed minor glitches in main window borders (bug #307 parts 1,2,3) -Mika - There's now space before and after : in coordinates (bug #307 part 6), from Paxtez - Star coordinates no longer shimmy (bug #331), from chmmravatar diff --git a/sc2/src/sc2code/border.c b/sc2/src/sc2code/border.c index 914c1e0d9..c3a0ce969 100644 --- a/sc2/src/sc2code/border.c +++ b/sc2/src/sc2code/border.c @@ -108,7 +108,7 @@ DrawSISFrame (void) SetContextForeGroundColor (BUILD_COLOR (MAKE_RGB15 (0x10, 0x10, 0x10), 0x19)); r.corner.y = 1; r.extent.width = 1; - r.extent.height = SAFE_Y + 7; + r.extent.height = SAFE_Y + 8; r.corner.x = SIS_ORG_X - 1; DrawFilledRectangle (&r); r.corner.x = SIS_ORG_X + SIS_SCREEN_WIDTH - 57 - 1; @@ -143,7 +143,7 @@ DrawSISFrame (void) SetContextForeGroundColor (BUILD_COLOR (MAKE_RGB15 (0x8, 0x8, 0x8), 0x1F)); r.corner.y = 1; r.extent.width = 1; - r.extent.height = SAFE_Y + 7; + r.extent.height = SAFE_Y + 8; r.corner.x = SIS_ORG_X + (SIS_SCREEN_WIDTH - 69); DrawFilledRectangle (&r); r.corner.x = SIS_ORG_X + SIS_SCREEN_WIDTH;