From 1e3f6d6da29572426d5fd2fd922af9cc5219b285 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Fri, 2 Mar 2012 10:51:46 +0100 Subject: Replaced min(max()) calls with the new function constrain() --- font.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'font.c') diff --git a/font.c b/font.c index b3913451..706a017c 100644 --- a/font.c +++ b/font.c @@ -6,7 +6,7 @@ * * BiDi support by Osama Alrawab @2008 Tripoli-Libya. * - * $Id: font.c 2.9 2012/01/13 09:43:22 kls Exp $ + * $Id: font.c 2.10 2012/03/02 10:47:45 kls Exp $ */ #include "font.h" @@ -396,7 +396,7 @@ cFont *cFont::fonts[eDvbFontSize] = { NULL }; void cFont::SetFont(eDvbFont Font, const char *Name, int CharHeight) { - cFont *f = CreateFont(Name, min(max(CharHeight, MINFONTSIZE), MAXFONTSIZE)); + cFont *f = CreateFont(Name, constrain(CharHeight, MINFONTSIZE, MAXFONTSIZE)); if (!f || !f->Height()) f = new cDummyFont; delete fonts[Font]; -- cgit v1.2.3