forked from bartvdbraak/blender
== 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:
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;
|
||||
|
Loading…
Reference in New Issue
Block a user