Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-04-16 17:01:50 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-04-16 17:01:50 +0400
commit23af7214d3721862eae9f4601791ee0602740f50 (patch)
tree8448278beb69102800d07579c30cc6a517f8f360 /source/blender/makesrna/intern/rna_access.c
parentbc347d380d0fa44f54d78c419bebbbdf2d5e208e (diff)
2.5:
* Also look in ./release for scripts instead of next to executable. * Some warning fixes.
Diffstat (limited to 'source/blender/makesrna/intern/rna_access.c')
-rw-r--r--source/blender/makesrna/intern/rna_access.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index 7b42d4afa60..ebe434377ee 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -2571,7 +2571,7 @@ int RNA_function_call_direct_va(PointerRNA *ptr, FunctionRNA *func, const char *
}
case PROP_FLOAT:
{
- float arg= va_arg(args, float);
+ double arg= va_arg(args, double);
err= rna_function_parameter_parse(&funcptr, parm, type, ftype, len, iter.data, &arg, NULL, tid, fid, pid);
break;
}