Changeset 206 for trunk/Start.pas
- Timestamp:
- May 8, 2020, 6:12:35 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Start.pas
r198 r206 165 165 166 166 uses 167 Global, Directories, Direct, ScreenTools, Inp, Back, Locale, PixelPointer;167 Global, Directories, Direct, ScreenTools, Inp, Back, Locale, UPixelPointer; 168 168 169 169 {$R *.lfm} … … 354 354 Bitmap.SetSize(Size.X * 2, Size.Y); 355 355 Bitmap.BeginUpdate; 356 MiniPixel .Init(Bitmap);356 MiniPixel := PixelPointer(Bitmap); 357 357 for y := 0 to Size.Y - 1 do begin 358 358 for x := 0 to Size.X - 1 do begin … … 386 386 if Mode = mmPicture then begin 387 387 Bitmap.BeginUpdate; 388 MiniPixel .Init(Bitmap);389 PrevMiniPixel .Init(Bitmap, 0, -1);388 MiniPixel := PixelPointer(Bitmap); 389 PrevMiniPixel := PixelPointer(Bitmap, 0, -1); 390 390 for y := 0 to Size.Y - 1 do begin 391 391 for x := 0 to Size.X - 1 do begin
Note:
See TracChangeset
for help on using the changeset viewer.