* define ColorType as LongWord if FPC_GRAPH_SUPPORTS_TRUECOLOR is defined

git-svn-id: trunk@40836 -
This commit is contained in:
nickysn 2019-01-10 15:56:53 +00:00
parent 1b16ff3629
commit 80762bc302

View File

@ -434,7 +434,11 @@ type
type
{$ifdef FPC_GRAPH_SUPPORTS_TRUECOLOR}
ColorType = LongWord;
{$else FPC_GRAPH_SUPPORTS_TRUECOLOR}
ColorType = Word;
{$endif FPC_GRAPH_SUPPORTS_TRUECOLOR}
RGBRec = packed record
Red: smallint;