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;