*** empty log message ***
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user