Hi,
I've just installed DarkGDK and have started to work through the tutorials. The first tutorial (Hello World) was fine and but the 3D object tutorial doesn't seem to work for me.
I've entered the code as shown in the tutorial but when I run the program the window runs but then freezes with just a black screen.
I tried running the code that comes with the tutorial and got the same result.
The code is
// Dark GDK - The Game Creators - www.thegamecreators.com
// whenever using Dark GDK you must ensure you include the header file
#include "DarkGDK.h"
void DarkGDK ( void )
{
dbSyncOn ( );
dbSyncRate ( 60 );
dbLoadObject ("Colonel-X.x", 1 );
dbPositionCamera ( 0, 50, -80 );
while ( LoopGDK ( ) )
{
dbSync ( );
}
return;
}
If it matters I'm running Vista with a Geforce 8600M GT graphics card.
Thanks