Make title banner transpare

This commit is contained in:
Anna Rose 2011-06-30 18:16:36 -04:00
parent ca60c61ce6
commit 303f1d4511
2 changed files with 4 additions and 1 deletions

View File

@ -28,7 +28,6 @@ int main(int argc, char** argv)
if (!tmpstate->init()) return 1;
state_stack.push(tmpstate);
while (!state_stack.empty())
{
GameState* state = state_stack.top();

View File

@ -39,6 +39,10 @@ bool TitleScreen::init()
debug("TitleScreen::init(): error: Couldn't load title banner");
return false;
}
DrawUtils::transpare(title_banner);
return true;
}