Well I am extremely new to this and normally wouldn't ask for help but I have been stuck on this all day.
The original file seems to work fine I click Start Debugging and it shows me a big black cmd box with the spinning asteroids.
But then when I add the code as it asks me to do, instead of getting the proper result I am stuck with a big empty black box.
I dont know what to think about this, I sure hope i installed everything properly, I even installed and reinstalled just to satisfy myself.
ty for any help.
#include "DarkGDK.h"
void DarkGDK ( void )
{
dbSyncOn ( );
dbSyncRate ( 60 );
dbLoadImage ( "animatedsprite.png", 1 );
dbSprite ( 1, 0, 0, 1 );
while ( LoopGDK ( ) )
{
dbSync ( );
}
return;
}