OS Windows 98
Dev-C++ Newest at the moment
I'm getting this strange error
cannot find -lobjc
That line contains
And here's all int
Please help to fix it.
Dev-C++ Newest at the moment
I'm getting this strange error
cannot find -lobjc
That line contains
Code:
MessageBox(NULL,"Please vote for this code at PlanetSourceCode.com","I'm begging you!",NULL);
Code:
int InitGL(void){
MessageBox(NULL,"Please vote for this code at PlanetSourceCode.com","I'm begging you!",NULL);
createlevel("levels/test0.txt",curlvl);
initcamera(mainc);
LoadGLTextures();
glShadeModel(GL_SMOOTH);
glClearColor(0.0f, 0.0f,0.0f, 0.5f);
glClearDepth(1.0f);
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LEQUAL);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
initdeftiles();
ticks=GetTickCount();
return true;
}
Comment