2025-08-23 18:49 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* contrib/hbbmp/core.c
    ! fixed copy & past typos reported by Grigory Filatov. Thanks a lot.
This commit is contained in:
Przemysław Czerpak
2025-08-23 18:49:07 +02:00
parent 8319837387
commit e679f6f8d6
2 changed files with 6 additions and 2 deletions

View File

@@ -7,6 +7,10 @@
Entries may not always be in chronological/commit order. Entries may not always be in chronological/commit order.
See license at the end of file. */ See license at the end of file. */
2025-08-23 18:49 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbbmp/core.c
! fixed copy & past typos reported by Grigory Filatov. Thanks a lot.
2025-08-22 21:50 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) 2025-08-22 21:50 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
+ contrib/hbbmp/core.c + contrib/hbbmp/core.c
+ contrib/hbbmp/hbbmp.ch + contrib/hbbmp/hbbmp.ch

View File

@@ -802,7 +802,7 @@ HB_FUNC( HB_BMP_PUTPIXEL )
PHB_BMPINFO pBMP = hb_bmpParam( 1, HB_TRUE ); PHB_BMPINFO pBMP = hb_bmpParam( 1, HB_TRUE );
if( pBMP ) if( pBMP )
hb_retl( hb_bmp_putpixel( pBMP, hb_parni( 2 ), hb_parni( hb_parni( 3 ) ), hb_parnint( 4 ) ) ); hb_retl( hb_bmp_putpixel( pBMP, hb_parni( 2 ), hb_parni( 3 ), hb_parnint( 4 ) ) );
} }
HB_FUNC( HB_BMP_GETPIXEL ) HB_FUNC( HB_BMP_GETPIXEL )
@@ -810,7 +810,7 @@ HB_FUNC( HB_BMP_GETPIXEL )
PHB_BMPINFO pBMP = hb_bmpParam( 1, HB_TRUE ); PHB_BMPINFO pBMP = hb_bmpParam( 1, HB_TRUE );
if( pBMP ) if( pBMP )
hb_retnint( hb_bmp_getpixel( pBMP, hb_parni( 2 ), hb_parni( hb_parni( 3 ) ) ) ); hb_retnint( hb_bmp_getpixel( pBMP, hb_parni( 2 ), hb_parni( 3 ) ) );
} }
HB_FUNC( HB_BMP_LINE ) HB_FUNC( HB_BMP_LINE )