From 8a312979ef02fbcd382329d9287021acebf213f3 Mon Sep 17 00:00:00 2001 From: Lukas Toenne Date: Sun, 6 Mar 2011 13:11:57 +0000 Subject: Applied patch by Alexander Kuznetsov for bug 26373: math node 'round' mode was not working correctly for negative numbers. --- source/blender/nodes/intern/CMP_nodes/CMP_math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/nodes/intern/CMP_nodes') diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_math.c b/source/blender/nodes/intern/CMP_nodes/CMP_math.c index 09c08f01a8a..039f7e6fab1 100644 --- a/source/blender/nodes/intern/CMP_nodes/CMP_math.c +++ b/source/blender/nodes/intern/CMP_nodes/CMP_math.c @@ -140,7 +140,7 @@ static void do_math(bNode *node, float *out, float *in, float *in2) break; case 14: /* Round */ { - out[0]= (int)(in[0] + 0.5f); + out[0]= (out[0]<0)?(int)(in[0] - 0.5f):(int)(in[0] + 0.5f); } break; case 15: /* Less Than */ -- cgit v1.2.3