Browse Source

Random size bug fix

Romain Porte 11 years ago
parent
commit
b9d4160273
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/status.c

+ 1 - 1
src/status.c

@@ -83,7 +83,7 @@ status_graph_draw(struct status_ctx *ctx, struct status_seq *sq, struct status_g
              j >= 0 && i >= sq->geo.x;
              --j, --i)
          {
-              if(j > max)
+              if(gc->datas[j] > max)
                   max = gc->datas[j];
          }
      }