diff --git a/RetroFE/Source/Graphics/Component/ReloadableScrollingText.cpp b/RetroFE/Source/Graphics/Component/ReloadableScrollingText.cpp index 0f96121..72754c2 100644 --- a/RetroFE/Source/Graphics/Component/ReloadableScrollingText.cpp +++ b/RetroFE/Source/Graphics/Component/ReloadableScrollingText.cpp @@ -363,7 +363,7 @@ void ReloadableScrollingText::draw( ) SDL::renderCopy(t, baseViewInfo.Alpha, &charRect, &rect, baseViewInfo); rect.x += rect.w; } - else + else if ((rect.x + static_cast( glyph.advance * scale * scaleX_ )) >= (static_cast( xOrigin ) + imageMaxWidth)) { rect.x = static_cast( xOrigin ) + static_cast( imageMaxWidth ) + 10; // Stop handling the rest of the string } diff --git a/RetroFE/Source/Version.cpp b/RetroFE/Source/Version.cpp index 1f7870a..7a3768f 100644 --- a/RetroFE/Source/Version.cpp +++ b/RetroFE/Source/Version.cpp @@ -20,7 +20,7 @@ std::string retrofe_version_major = "0"; std::string retrofe_version_minor = "7"; -std::string retrofe_version_build = "11"; +std::string retrofe_version_build = "12"; std::string Version::getString()