ok Just to give u some information I just started learning this so im doing the tut and when i started to debug i got an error
Quote: "
Unhandled exception at 0x6604a92f in Hellow World.exe: 0xC0000005: Access violation reading location 0x0ce9b000.
"
my code is
Quote: "
// Dark GDK - The Game Creators - www.thegamecreators.com
// the wizard has created a very simple project that uses Dark GDK
// it contains the basic code for a GDK application
// whenever using Dark GDK you must ensure you include the header file
#include "DarkGDK.h"
// the main entry point for the application is this function
void DarkGDK ( void )
{
// turn on sync rate and set maximum rate to 60 fps
dbSyncOn ( );
dbSyncRate ( 60 );
dbLoadImage ( "animatedsprite.png", 1 );
dbSprite ( 1, 0, 0, 1 );
// our main loop
while ( LoopGDK ( ) )
{
// update the screen
dbSync ( );
}
// return back to windows
return;
}
"
The current directx that im useing is DirectX SDK (August 2007)
anyhelp would be nice thx!