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:
authorTon Roosendaal <ton@blender.org>2005-06-08 22:55:49 +0400
committerTon Roosendaal <ton@blender.org>2005-06-08 22:55:49 +0400
commit205b6501a0ad8e792d2d7cc32dc3ba25b7613ec2 (patch)
treec82cd64d5849e161f738334606fc676d33a2ffa5 /intern/bmfont
parentce68fddc0db812dd827ffd2d8bf90fb0badcb90e (diff)
(Accidentally sent previous commit without message... is same stuff)
gcc4 error fixes for compiling in OSX Tiger Also; make using python framework default in makefiles
Diffstat (limited to 'intern/bmfont')
-rw-r--r--intern/bmfont/intern/BMF_BitmapFont.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/bmfont/intern/BMF_BitmapFont.cpp b/intern/bmfont/intern/BMF_BitmapFont.cpp
index 521cd67a325..6af8e9eaa2c 100644
--- a/intern/bmfont/intern/BMF_BitmapFont.cpp
+++ b/intern/bmfont/intern/BMF_BitmapFont.cpp
@@ -76,7 +76,7 @@ static int is_a_really_crappy_nvidia_card(void) {
/* Do you understand the implication? Do you? */
if (well_is_it==-1) {
- well_is_it= (strncmp(glGetString(GL_RENDERER), "NVIDIA GeForce 6800", 18) == 0);
+ well_is_it= (strncmp((char *)glGetString(GL_RENDERER), "NVIDIA GeForce 6800", 18) == 0);
}
return well_is_it;
}