Cut down on the number of verticies drawn for fades

This commit is contained in:
Jonathan Moore Liles 2008-04-14 04:07:18 -05:00
parent af0e75c23c
commit 8e02b99192
1 changed files with 1 additions and 1 deletions

View File

@ -520,7 +520,7 @@ Region::draw ( int X, int Y, int W, int H )
const int width = timeline->ts_to_x( fade.length );
for ( int i = X; i < line_x() + width; i++ )
for ( int i = X; i < line_x() + width; i += 3 )
{
const int x = i;