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
This commit is contained in:
gewlitys
2003-05-10 18:21:06 +00:00
parent d4b948497c
commit 2112a37f58
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -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
+2 -2
View File
@@ -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;