== Sequencer ==

Small fix by jms: rint() isn't available on win32... 
(hmm, rint() is conforming to C99, that is _really_ strange...)
This commit is contained in:
Peter Schlaile 2009-06-26 19:40:28 +00:00
parent efcdd16b07
commit b1a5b08b1a

@ -73,6 +73,12 @@
#ifdef WIN32
#define snprintf _snprintf
static double rint(double x)
{
return floor(x < 0.0 ? x - 0.5 : x + 0.5);
}
#endif
int seqrectx, seqrecty;