summaryrefslogtreecommitdiff
path: root/helpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'helpers.c')
-rw-r--r--helpers.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/helpers.c b/helpers.c
index 7a35477..425ebd6 100644
--- a/helpers.c
+++ b/helpers.c
@@ -37,11 +37,12 @@ static void DrawBlendedBackground(cPixmap *pixmap, tColor color, tColor colorBle
}
}
-static int Minimum(int a, int b, int c, int d, int e) {
+static int Minimum(int a, int b, int c, int d, int e, int f) {
int min = a;
if (b < min) min = b;
if (c < min) min = c;
if (d < min) min = d;
if (e < min) min = e;
+ if (f < min) min = f;
return min;
} \ No newline at end of file