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>2008-01-01 22:20:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-01-01 22:20:49 +0300
commita42e548e81f58b415f74c909a35a53e78766c13c (patch)
treea50087ce7cc76d3fd7186d8d7039a3e97cf0e764 /source/blender/ftfont/intern/FTF_Api.cpp
parent372ee054c0deb4ca07e1a70c7b905d24043723be (diff)
removed some more header files, made the game engine compile with removed header files, added includes to SConstruct files.
Diffstat (limited to 'source/blender/ftfont/intern/FTF_Api.cpp')
-rw-r--r--source/blender/ftfont/intern/FTF_Api.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/ftfont/intern/FTF_Api.cpp b/source/blender/ftfont/intern/FTF_Api.cpp
index bf6698a1cde..e5f24736056 100644
--- a/source/blender/ftfont/intern/FTF_Api.cpp
+++ b/source/blender/ftfont/intern/FTF_Api.cpp
@@ -46,7 +46,7 @@
#ifdef __cplusplus
extern "C" {
#endif
- #include "datatoc.h"
+//XXX #include "datatoc.h"
#ifdef __cplusplus
}
#endif
@@ -71,7 +71,7 @@ FTF_EXPORT int FTF_GetNewFont (const unsigned char *str, int datasize, int fonts
newfont= new FTF_TTFont();
if (!(newfont->SetFont((unsigned char*)str, datasize, fontsize))) {
- newfont->SetFont((unsigned char*)datatoc_bfont_ttf, datatoc_bfont_ttf_size, fontsize);
+ //XXX newfont->SetFont((unsigned char*)datatoc_bfont_ttf, datatoc_bfont_ttf_size, fontsize);
return 0;
}
return 1;