From 059e3a6fb62b8b908361f274b8de363e0a99d68a Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Wed, 16 Apr 2003 06:13:47 +0000 Subject: [PATCH] fix flickering letters in name entry --- stepmania/src/ScreenNameEntry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenNameEntry.cpp b/stepmania/src/ScreenNameEntry.cpp index cbf66e4eee..30b5c160ad 100644 --- a/stepmania/src/ScreenNameEntry.cpp +++ b/stepmania/src/ScreenNameEntry.cpp @@ -83,7 +83,7 @@ float GetClosestCharYOffset( float fFakeBeat ) // return value is relative to gray arrows float GetClosestCharYPos( float fFakeBeat ) { - return roundf( GetClosestCharYOffset(fFakeBeat)*g_fCharsSpacingY ); + return GetClosestCharYOffset(fFakeBeat)*g_fCharsSpacingY; }