gal: Pass aReserve to drawLineQuad in drawPolyline.

This commit is contained in:
dsa-t 2022-11-01 05:02:17 +00:00
parent a5d685ff5c
commit aeef215ffb
1 changed files with 1 additions and 1 deletions

View File

@ -2187,7 +2187,7 @@ void OPENGL_GAL::drawPolyline( const std::function<VECTOR2D( int )>& aPointGette
if( aPointCount == 1 )
{
drawLineQuad( aPointGetter( 0 ), aPointGetter( 0 ), false );
drawLineQuad( aPointGetter( 0 ), aPointGetter( 0 ), aReserve );
return;
}