From: SakirSoft <sak...@us...> - 2005-07-06 18:57:15
|
Update of /cvsroot/openmugen/OpenMugen/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9482 Modified Files: GameObjects.cpp Log Message: no message Index: GameObjects.cpp =================================================================== RCS file: /cvsroot/openmugen/OpenMugen/src/GameObjects.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -p -r1.4 -r1.5 --- GameObjects.cpp 2 Jul 2005 17:13:05 -0000 1.4 +++ GameObjects.cpp 6 Jul 2005 18:57:03 -0000 1.5 @@ -33,8 +33,8 @@ CExplod::CExplod(CSffManager *pSff,s32 n { lpSff = pSff; - x_pos = 100; - y_pos = 220; + x_pos = 0; + y_pos = 0; x_vel = 0; y_vel = 0; x_accel = 0; @@ -56,10 +56,11 @@ CExplod::CExplod(CSffManager *pSff,s32 n player = p; - pSff->SetBltFlags(CVideoSystem::BLT_MASKED | CVideoSystem::BLT_NORMAL); - + if( !player->GetRightFaced() ) pSff->SetBltFlags(CVideoSystem::BLT_MASKED | CVideoSystem::BLT_FLIPH); + else + pSff->SetBltFlags(CVideoSystem::BLT_MASKED | CVideoSystem::BLT_NORMAL); |