I'm new to the Dark gdx and i was running throw the tutorials, and at the first one i ran in to problems. The code i did and the code in the tutorial is the same to the point. But when i do Debug/Run it comes up with a blank black screen. So i been reading threw the forums and i seen some people have a problem with vista and the 3d format. I'm also running vista could that be my problem?
Edit: I just tried the Second Tut and same problem.
#include "DarkGDK.h"
void DarkGDK ( void )
{
dbSyncOn ( );
dbSyncRate ( 60 );
dbCreateAnimatedSprite (1, "animatedsprite.png", 4, 4, 1);
dbSprite ( 1, 0, 0, 1 );
while ( LoopGDK ( ) )
{
dbPlaySprite ( 1, 1, 16, 200 );
dbSync ( );
}
return;
}