HI i just got darkgame sdk, and i am trying ti display an image, i can display text but when i try doing an image it doesn't not show up. can any one help me out with this. code is posted below
#include "DarkSDK.h"
void DarkSDK ( void )
{
// set sync on and sync rate to 60 frames per second
dbSyncOn ( );
dbLoadImage ( "logo.bmp", 1, 1 );
// loop until the escape key is pressed
while ( LoopSDK() )
{
//When esc key pressed leave while loop.
if(dbEscapeKey()) return;
dbText ( 0, 0,"Image should display:");
dbPasteImage ( 1, 200, 200 ) ;
// update screen
dbSync ( );
}
}