Fixing bug in ComplexCurve.

This commit is contained in:
Emil Martinec
2011-01-08 16:57:36 -06:00
parent 0f8bb7322c
commit 15517c0c5d
2 changed files with 3 additions and 3 deletions

View File

@@ -21,7 +21,7 @@
#include <mytime.h>
#include <refreshmap.h>
#define CLIPTO(a,b,c) ((a)>b?((a)<c?(a):c):b)
#define CLIP(a) ((a)<65535 ? (a) : (65535));
#define CLIP(a) ((a)<65535 ? (a) : (65535))
#define SKIPS(a,b) ((a) / (b) + ((a) % (b) > 0))
namespace rtengine {