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>2010-11-26 20:07:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-26 20:07:31 +0300
commitcfd3b11630161a802233b905f7076899888c6fe3 (patch)
tree29653a787a140e0769256c50e823288821c8c802 /source/blender/blenfont
parentcf0820d6285c3a9379dd529ee50dcf39e2efa21c (diff)
fix building blenderplayer and a divide by zero bug with the console view.
Diffstat (limited to 'source/blender/blenfont')
-rw-r--r--source/blender/blenfont/intern/blf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c
index 360c79ed06a..eb7a89bf840 100644
--- a/source/blender/blenfont/intern/blf.c
+++ b/source/blender/blenfont/intern/blf.c
@@ -66,6 +66,10 @@ int global_font_default= -1;
int global_font_points= 11;
int global_font_dpi= 72;
+// XXX, should these be made into global_font_'s too?
+int blf_mono_font= -1;
+int blf_mono_font_render= -1;
+
static FontBLF *BLF_get(int fontid)
{
if (fontid >= 0 && fontid < BLF_MAX_FONT)