Okay so I can compile the tutorial fine all the way up until this point:
#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;
}
Then I get this error:
Quote: "
1>c:\users\crimson\documents\visual studio 2008\projects\hello world\hello world\main.cpp(6) : error C2065: '“animatedsprite' : undeclared identifier
1>c:\users\crimson\documents\visual studio 2008\projects\hello world\hello world\main.cpp(6) : error C2228: left of '.png”' must have class/struct/union
1> type is ''unknown-type''"
Any ideas? Thanks in advance.