From 941556dbe66c7f13f0659ebdc139344193eb3e7c Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sun, 20 Feb 2011 03:11:29 -0800 Subject: s/min_x/min_fs/ and so on --- src/peaks.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/peaks.c') diff --git a/src/peaks.c b/src/peaks.c index 99c82323..d158f064 100644 --- a/src/peaks.c +++ b/src/peaks.c @@ -95,10 +95,10 @@ static int cull_peaks_in_panel(struct image *image, struct panel *p) f = image_get_feature(image->features, i); if ( f == NULL ) continue; - if ( f->x < p->min_x ) continue; - if ( f->x > p->max_x ) continue; - if ( f->y < p->min_y ) continue; - if ( f->y > p->max_y ) continue; + if ( f->x < p->min_fs ) continue; + if ( f->x > p->max_fs ) continue; + if ( f->y < p->min_ss ) continue; + if ( f->y > p->max_ss ) continue; /* How many peaks are in the same column? */ ncol = 0; -- cgit v1.2.3