Increased the size of GSOSInString to 508 bytes. Some GSOS calls seem to require this (DInfoGS being one example).

This commit is contained in:
Peter Easdown 2021-07-26 09:07:12 +10:00
parent 2eec05e465
commit d6fdcf81cc
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ type
gsosInString = record
size: integer;
{Change the array size as needed for your application}
theString: packed array [1..254] of char;
theString: packed array [1..508] of char;
end;
gsosInStringPtr = ^gsosInString;