Ok, I will elaborate:
// just a constructor
MainMenu::MainMenu ( void )
{
userChoice = 0;
titleScreen = 1;
startQuit = 2;
dbLoadImage ( "MainTitle.png", titleScreen );
dbCreateAnimatedSprite ( startQuit, "StartQuit.png", 2, 1, 0 );
dbSetSpriteFrame ( startQuit, 1 );
dbShowSprite ( startQuit );
}
// just member function to draw my main menu
void MainMenu::DrawMainMenu ( void )
{
dbPasteImage ( titleScreen, 200, 0 );
dbPasteSprite ( startQuit, 225, 450 );
}
I am including an attachment that shows a screen shot of what is happening, and a copy of the image that should be loaded and pasted. But like I said before, the ugly pink one does not exist on my computer anymore so I don't know where dbLoadImage () is getting it from.