summaryrefslogtreecommitdiff
path: root/helpers.c
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-03-09 16:42:48 +0100
committerlouis <louis.braun@gmx.de>2013-03-09 16:42:48 +0100
commit3d4c1d84b7cd2ca23e3fda446a30b55a1d4878d9 (patch)
treecd8bba326fcdb4541f85e3be335b4671f21bed2a /helpers.c
parentc7785076bf49db3d0ab1ae63ccb19bd3f9fe43e3 (diff)
downloadskin-nopacity-3d4c1d84b7cd2ca23e3fda446a30b55a1d4878d9.tar.gz
skin-nopacity-3d4c1d84b7cd2ca23e3fda446a30b55a1d4878d9.tar.bz2
Restructured setup menu
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