diff options
author | dkf <dkf@noemail.net> | 2010-01-05 19:06:08 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2010-01-05 19:06:08 (GMT) |
commit | e02304c731ca58ba5a1f51dfae7404cb86715ad7 (patch) | |
tree | 11b31e82dac73a049160a61f1203347a4efd487c | |
parent | cf982106d6407fce2fca946dbd97664ca030c0c3 (diff) | |
download | tk-e02304c731ca58ba5a1f51dfae7404cb86715ad7.zip tk-e02304c731ca58ba5a1f51dfae7404cb86715ad7.tar.gz tk-e02304c731ca58ba5a1f51dfae7404cb86715ad7.tar.bz2 |
Win doesn't have round(), but does have floor()
FossilOrigin-Name: ebce8e7f611af222c0a3817722c1bf2faeba36e3
-rw-r--r-- | generic/tkFont.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkFont.h b/generic/tkFont.h index ebf5bca..be862f3 100644 --- a/generic/tkFont.h +++ b/generic/tkFont.h @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkFont.h,v 1.14 2010/01/05 08:49:49 dkf Exp $ + * RCS: @(#) $Id: tkFont.h,v 1.15 2010/01/05 19:06:09 dkf Exp $ */ #ifndef _TKFONT @@ -192,7 +192,7 @@ typedef struct TkXLFDAttributes { * Helper macro. How to correctly round a double to a short. */ -#define ROUND16(x) ((short) round(x)) +#define ROUND16(x) ((short) floor((x) + 0.5)) /* * Low-level API exported by generic code to platform-specific code. |