aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2013-03-26 22:13:24 +0000
committerDimitri Sokolyuk <demon@dim13.org>2013-03-26 22:13:24 +0000
commit0b3d6aad997eb049c86cb78ec98e87bf0a03cab2 (patch)
treeca9fbd6a07245b968a8dc951ddf35191f62701d3
parentcc41dd438d96e8806cfc462d03c2f5ad04fdd97f (diff)
fix blue height
-rw-r--r--spectrogram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/spectrogram.c b/spectrogram.c
index eccb687..40bdf55 100644
--- a/spectrogram.c
+++ b/spectrogram.c
@@ -75,7 +75,7 @@ init_rect(int w, int h, int ssz, int dlsz)
dl_hi.x = 2 * w / 3;
dl_hi.y = 0;
dl_hi.w = w / 3;
- dl_hi.h = dlsz - 1;
+ dl_hi.h = dlsz;
/* Blit */
wf_from.x = 0;