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:
authorCampbell Barton <ideasman42@gmail.com>2012-08-08 22:37:06 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-08 22:37:06 +0400
commitf0951f58ca2ffb1a7574beaac3217d3729e706c0 (patch)
tree083fa0fec7f5acc563902584b8c3c015f852bbcb /source/blender/editors/object/object_modifier.c
parent0b5a995cfdca70c844186a3af9b2a01fed5e5d3f (diff)
code cleanup: rename G.afbreek --> is_break, G.rendering --> is_rendering
Diffstat (limited to 'source/blender/editors/object/object_modifier.c')
-rw-r--r--source/blender/editors/object/object_modifier.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c
index 1b18bfe193a..b47269097fb 100644
--- a/source/blender/editors/object/object_modifier.c
+++ b/source/blender/editors/object/object_modifier.c
@@ -2060,7 +2060,7 @@ static int oceanbake_breakjob(void *UNUSED(customdata))
/* this is not nice yet, need to make the jobs list template better
* for identifying/acting upon various different jobs */
/* but for now we'll reuse the render break... */
- return (G.afbreek);
+ return (G.is_break);
}
/* called by oceanbake, wmJob sends notifier */
@@ -2083,7 +2083,7 @@ static void oceanbake_startjob(void *customdata, short *stop, short *do_update,
oj->do_update = do_update;
oj->progress = progress;
- G.afbreek = 0; /* XXX shared with render - replace with job 'stop' switch */
+ G.is_break = FALSE; /* XXX shared with render - replace with job 'stop' switch */
BKE_bake_ocean(oj->ocean, oj->och, oceanbake_update, (void *)oj);