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>2014-04-01 04:34:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-01 08:22:28 +0400
commit617557b08ea94e2b65a1697ddf0b79651204d92b (patch)
tree50b24bab075b42fa20456140c9a9681cfb01325b /source/creator
parent2c00ecc738c04dc5dc22d4a6b81a1e937526ba6d (diff)
Code cleanup: remove TRUE/FALSE & WITH_BOOL_COMPAT define
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 249b18e050e..b74c64fa6b8 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -210,7 +210,7 @@ static void blender_esc(int sig)
{
static int count = 0;
- G.is_break = TRUE; /* forces render loop to read queue, not sure if its needed */
+ G.is_break = true; /* forces render loop to read queue, not sure if its needed */
if (sig == 2) {
if (count) {
@@ -538,7 +538,7 @@ static void blender_crash_handler_backtrace(FILE *fp)
process = GetCurrentProcess();
- SymInitialize(process, NULL, TRUE);
+ SymInitialize(process, NULL, true);
nframes = CaptureStackBackTrace(0, SIZE, stack, NULL);
symbolinfo = MEM_callocN(sizeof(SYMBOL_INFO) + MAXSYMBOL * sizeof( char ), "crash Symbol table");
@@ -1283,7 +1283,7 @@ static int load_file(int UNUSED(argc), const char **argv, void *data)
/* WM_file_read would call normally */
ED_editors_init(C);
- DAG_on_visible_update(bmain, TRUE);
+ DAG_on_visible_update(bmain, true);
BKE_scene_update_tagged(bmain->eval_ctx, bmain, CTX_data_scene(C));
}
else {