From 3f0fdda811876cc04c84c346d5d996dba9e8333c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 27 Mar 2003 00:39:46 +0000 Subject: [PATCH] fix warning --- stepmania/src/ScoreKeeperMAX2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScoreKeeperMAX2.cpp b/stepmania/src/ScoreKeeperMAX2.cpp index 41b9855b31..d7927bf76c 100644 --- a/stepmania/src/ScoreKeeperMAX2.cpp +++ b/stepmania/src/ScoreKeeperMAX2.cpp @@ -157,7 +157,7 @@ void ScoreKeeperMAX2::AddScore( TapNoteScore score ) printf( "score: %10.0f\n", m_fScore ); - GAMESTATE->m_CurStageStats.fScore[m_PlayerNumber] = m_fScore; + GAMESTATE->m_CurStageStats.fScore[m_PlayerNumber] = float(m_fScore); } void ScoreKeeperMAX2::HandleTapRowScore( TapNoteScore scoreOfLastTap, int iNumTapsInRow, Inventory* pInventory )