From 395d6488a805cdb497d880a937af21ceb71fd64b Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 28 Apr 2005 00:11:30 +0000 Subject: [PATCH] don't show JustBarely when hitting 0 life with fail off --- stepmania/src/GraphDisplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/GraphDisplay.cpp b/stepmania/src/GraphDisplay.cpp index 46070d9d55..66d5d3e7e5 100644 --- a/stepmania/src/GraphDisplay.cpp +++ b/stepmania/src/GraphDisplay.cpp @@ -80,7 +80,7 @@ void GraphDisplay::LoadFromStageStats( const StageStats &ss, const PlayerStageSt } } - if( fMinLifeSoFar < 0.1f ) + if( fMinLifeSoFar > 0.0f && fMinLifeSoFar < 0.1f ) { float fX = SCALE( fMinLifeSoFarAtSecond, 0, fTotalStepSeconds, m_quadVertices.left, m_quadVertices.right ); fX = Quantize( fX, 1.0f );