From 13e33268fb57af1014a839efaa3410951b8dbba4 Mon Sep 17 00:00:00 2001 From: Pieter Hulshoff Date: Wed, 19 Oct 2016 08:46:11 +0200 Subject: [PATCH] Fixed space width for horizontal scrolling text last paragraph line. --- RetroFE/Source/Graphics/Component/ReloadableScrollingText.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RetroFE/Source/Graphics/Component/ReloadableScrollingText.cpp b/RetroFE/Source/Graphics/Component/ReloadableScrollingText.cpp index 72754c2..1e6304d 100644 --- a/RetroFE/Source/Graphics/Component/ReloadableScrollingText.cpp +++ b/RetroFE/Source/Graphics/Component/ReloadableScrollingText.cpp @@ -567,7 +567,7 @@ void ReloadableScrollingText::draw( ) } else { - rect.x += static_cast( spaceWidth * scale * scaleX_ ); + rect.x += static_cast( spaceWidth ); } }