*** empty log message ***

This commit is contained in:
Paul Tucker
1999-08-04 06:05:50 +00:00
parent e0ae56a2e5
commit a0c5ea4e6e
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
19990804-00:40 EDT Paul Tucker <ptucker@sympatico.ca>
* source/rtl/gt/gtwin.c
* better selection of default screen size reported by MaxRow/Col
19990804-00:35 EDT David G. Holm <dholm@jsd-llc.com>
* source/vm/hvm.c
! Corrected Power() to set the correct number of decimal points.

View File

@@ -81,7 +81,7 @@ char hb_gt_GetScreenWidth(void)
LOG("GetScreenWidth");
GetConsoleScreenBufferInfo(HOutput, &csbi);
return (char)csbi.dwSize.X;
return (char)csbi.dwMaximumWindowSize.X;
}
char hb_gt_GetScreenHeight(void)
@@ -90,7 +90,7 @@ char hb_gt_GetScreenHeight(void)
LOG("GetScreenHeight");
GetConsoleScreenBufferInfo(HOutput, &csbi);
return (char)csbi.dwSize.Y;
return (char)csbi.dwMaximumWindowSize.Y;
}
void hb_gt_SetPos(char cRow, char cCol)