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:
authorDalai Felinto <dfelinto@gmail.com>2010-05-27 12:12:32 +0400
committerDalai Felinto <dfelinto@gmail.com>2010-05-27 12:12:32 +0400
commitec70356424d687cb1cdb8cb80095a5593937e03a (patch)
tree1aff7a8be61b897368345e2d270017eedd2fa317 /source/blender/makesrna/intern/rna_actuator.c
parent9852543154c551e96a7b074546cdfe52a05282d4 (diff)
Logic Editor: ops forgot this small fix on last commit
Diffstat (limited to 'source/blender/makesrna/intern/rna_actuator.c')
-rw-r--r--source/blender/makesrna/intern/rna_actuator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_actuator.c b/source/blender/makesrna/intern/rna_actuator.c
index 8bad6957b1b..72208217984 100644
--- a/source/blender/makesrna/intern/rna_actuator.c
+++ b/source/blender/makesrna/intern/rna_actuator.c
@@ -436,7 +436,7 @@ static void rna_Actuator_action_action_set(PointerRNA *ptr, PointerRNA value)
bActuator *act = (bActuator *)ptr->data;
bActionActuator *aa = (bActionActuator *) act->data;
- aa->me = value.data;
+ aa->act = value.data;
}
#else