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:
authorJason Wilkins <Jason.A.Wilkins@gmail.com>2012-11-11 13:07:29 +0400
committerJason Wilkins <Jason.A.Wilkins@gmail.com>2012-11-11 13:07:29 +0400
commitf5df1601d6c6d03377f30f3787b964cab71ec3e0 (patch)
treeaff1eb2bfa621a7adea0af63efb326297531d326 /source/blender/blenfont/intern/blf.c
parent92c8c2ed69fa36eb9d68ebb7033bdf892e58996f (diff)
replace 0 and 1 with FALSE and TRUE in BLF_global_font_init in blf.c
Diffstat (limited to 'source/blender/blenfont/intern/blf.c')
-rw-r--r--source/blender/blenfont/intern/blf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c
index f3cc92e7a27..f56c0e7503c 100644
--- a/source/blender/blenfont/intern/blf.c
+++ b/source/blender/blenfont/intern/blf.c
@@ -149,10 +149,10 @@ static int blf_global_font_init(void)
if (global_font_default == -1) {
printf("Warning: Can't find default font!\n");
- return 0;
+ return FALSE;
}
else {
- return 1;
+ return TRUE;
}
}