results fixed, rolling score changed

This commit is contained in:
Chris Danford
2002-02-02 05:11:12 +00:00
parent b8e1ee1b22
commit 29f886e679
25 changed files with 291 additions and 201 deletions
+8 -4
View File
@@ -61,11 +61,8 @@ const float PILL_OFFSET_Y[LIEFMETER_NUM_PILLS] = {
const float SCORE_Y = SCREEN_HEIGHT - 40;
Player::Player( PlayerOptions po, PlayerNumber pn )
Player::Player()
{
m_PlayerOptions = po;
m_PlayerNumber = pn;
m_iCurCombo = 0;
m_iMaxCombo = 0;
m_fLifePercentage = 0.50f;
@@ -232,6 +229,13 @@ Player::Player( PlayerOptions po, PlayerNumber pn )
}
void Player::SetPlayerOptions( PlayerOptions po, PlayerNumber pn )
{
m_PlayerOptions = po;
m_PlayerNumber = pn;
}
void Player::SetX( float fX )
{
m_fArrowsCenterX = fX;