minor fixes in GLDebugFont.cpp

update automake Makefile.am, add some missing files such as btActionInterface.h
http://code.google.com/p/bullet/issues/detail?id=258
unix line endings for install-sh
This commit is contained in:
erwin.coumans
2009-09-17 22:02:11 +00:00
parent 172b87188b
commit 0d0da7ae4e
3 changed files with 333 additions and 324 deletions

View File

@@ -86,7 +86,7 @@ void GLDebugDrawString(int x,int y,const char* string)
glLoadIdentity();
glTranslated(x,sScreenHeight - y,0);
for (int i=0;i<strlen(string);i++)
for (int i=0;i<int (strlen(string));i++)
{
char ch = string[i]-32;
if (ch>=0)
@@ -122,7 +122,7 @@ void GLDebugDrawString(int x,int y,const char* string)
glLoadIdentity();
glScalef(0.025,0.025,0.025);
glMatrixMode(GL_MODELVIEW);
//glDisable(GL_TEXTURE_2D);
}