diff options
-rw-r--r-- | src/peaks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/peaks.c b/src/peaks.c index 502c5dad..88a96461 100644 --- a/src/peaks.c +++ b/src/peaks.c @@ -32,8 +32,8 @@ static int in_streak(int x, int y) { - if ( (y>512) && (y<768) && (abs(x-493)<15) ) return 1; - if ( (y>768) && (abs(x-480)<15) ) return 1; + if ( (y>512) && (y<600) && (abs(x-489)<15) ) return 1; + if ( (y>600) && (abs(x-480)<25) ) return 1; return 0; } |