mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-16 21:00:00 +01:00
fix many compile warnings
This commit is contained in:
@@ -112,7 +112,6 @@ static void blob_init_( blob_t *b , int w , int h)
|
||||
int blob_malloc(int w, int h)
|
||||
{
|
||||
int j,i;
|
||||
double frac;
|
||||
int dist_sqrt;
|
||||
|
||||
if(blob_radius_ <= 0)
|
||||
@@ -141,7 +140,6 @@ int blob_malloc(int w, int h)
|
||||
dist_sqrt = i * i + j * j;
|
||||
if( dist_sqrt < blob_sradius_ )
|
||||
{
|
||||
frac = (double) (sqrt(dist_sqrt)) / (double) blob_sradius_;
|
||||
blob_[i + blob_radius_][j + blob_radius_] = 0xff;
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user