Hi,
I just downloaded DarkGDK and was working on the first tutorial that is offered.
My problem is that when I get to the point of centering part of the image and try to use the
dbCreateAnimatedSprite ( 1, “animatedsprite.png”, 4, 4, 1 ); function there are two build errors that say 'animatedsprite" is an undeclared identifier, and then that .png doesn't have a class/structure/union.
when run part of the image is supposed to show up on the screen. Here is how the tutorial says the code should look:
#include "DarkGDK.h"
void DarkGDK ( void )
{
dbSyncOn ( );
dbSyncRate ( 60 );
dbCreateAnimatedSprite ( 1, “animatedsprite.png”, 4, 4, 1 );
dbSprite ( 1, 0, 0, 1 );
while ( LoopGDK ( ) )
{
dbSync ( );
}
return;
}
thanks