From d12876adb77b8a58dc779fc77a076831df2c44fb Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 30 Apr 2007 16:55:42 +0000 Subject: [PATCH] fix glitches if p1 is mini and p2 is not --- stepmania/src/NoteDisplay.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/NoteDisplay.cpp b/stepmania/src/NoteDisplay.cpp index 9bee9f04c5..01f862d1b2 100644 --- a/stepmania/src/NoteDisplay.cpp +++ b/stepmania/src/NoteDisplay.cpp @@ -527,8 +527,8 @@ void NoteDisplay::DrawHoldBody( const TapNote& tn, int iCol, float fBeat, bool b fYTail += cache->m_iStopDrawingHoldBodyOffsetFromTail; } - const float fFrameHeightTop = pSpriteTop->GetZoomedHeight(); - const float fFrameHeightBottom = pSpriteBottom->GetZoomedHeight(); + const float fFrameHeightTop = pSpriteTop->GetUnzoomedHeight(); + const float fFrameHeightBottom = pSpriteBottom->GetUnzoomedHeight(); float fYStartPos = ArrowEffects::GetYPos( m_pPlayerState, iCol, fDrawDistanceAfterTargetsPixels, m_fYReverseOffsetPixels ); float fYEndPos = ArrowEffects::GetYPos( m_pPlayerState, iCol, fDrawDistanceBeforeTargetsPixels, m_fYReverseOffsetPixels );