EDIT: I actually meant^^:
"Why don't I have more than 60 FPS???"
// Dark GDK - The Game Creators - www.thegamecreators.com
// the wizard has created a very simple 3D project that uses Dark GDK
// it can be used as a starting point in making your own 3D games
// whenever using Dark GDK you must ensure you include the header file
#include "DarkGDK.h"
// the main entry point for the application is this function
void DarkGDK ( void )
{
dbSyncOn();
dbSyncRate(2000);
dbMakeObjectCube(1,100);
while ( LoopGDK ( ))
{
// display some text on screen
dbText ( 32, 32, dbStr(dbScreenFPS()) );
dbTurnObjectLeft(1,0.01);
// here we make a call to update the contents of the screen
dbSync ( );
}
// and now everything is ready to return back to Windows
return;
}
Thanks for help!!!