mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 18:49:19 +02:00
LCL: fixed range error (loop variable needs to be integer too)
git-svn-id: trunk@10863 -
This commit is contained in:
parent
ccb0b4e1ea
commit
b27dc30a4b
@ -248,7 +248,7 @@ var
|
|||||||
UnusedBitsAtEnd: cardinal;
|
UnusedBitsAtEnd: cardinal;
|
||||||
p: PByte;
|
p: PByte;
|
||||||
y: cardinal;
|
y: cardinal;
|
||||||
x: cardinal;
|
x: integer;
|
||||||
UnusedByteMask: Byte; // Alpha Bits should be all set. The Byte at line end
|
UnusedByteMask: Byte; // Alpha Bits should be all set. The Byte at line end
|
||||||
// can contain some unused bits. This mask OR byte at
|
// can contain some unused bits. This mask OR byte at
|
||||||
// line end makes the unsused bits all true.
|
// line end makes the unsused bits all true.
|
||||||
|
Loading…
Reference in New Issue
Block a user