cleanup, fix typo

This commit is contained in:
Glenn Maynard
2003-12-15 06:37:38 +00:00
parent 2cd058620b
commit 0a41bb8512
2 changed files with 8 additions and 12 deletions
+4 -4
View File
@@ -64,7 +64,7 @@ GameState::~GameState()
void GameState::Reset()
{
if( m_timeGameStated != 0 && m_vPlayedStageStats.size() ) // we were in the middle of a game and played at least one song
if( m_timeGameStarted != 0 && m_vPlayedStageStats.size() ) // we were in the middle of a game and played at least one song
EndGame();
@@ -72,7 +72,7 @@ void GameState::Reset()
int p;
m_timeGameStated = 0;
m_timeGameStarted = 0;
m_CurStyle = STYLE_INVALID;
for( p=0; p<NUM_PLAYERS; p++ )
m_bSideIsJoined[p] = false;
@@ -155,7 +155,7 @@ void GameState::Reset()
void GameState::BeginGame()
{
m_timeGameStated = time(NULL);
m_timeGameStarted = time(NULL);
}
void GameState::EndGame()
@@ -163,7 +163,7 @@ void GameState::EndGame()
// Update profile stats
time_t now = time(NULL);
int iPlaySeconds = now - m_timeGameStated;
int iPlaySeconds = now - m_timeGameStarted;
if( iPlaySeconds < 0 )
iPlaySeconds = 0;