From 2cccd00d65dc1acfb9925e5d1b7298ac3426e5ff Mon Sep 17 00:00:00 2001 From: Pieter Hulshoff Date: Sun, 15 Mar 2020 12:31:07 +0100 Subject: [PATCH] Solved issues with onMenuIdle animations in attract mode. --- RetroFE/Source/Graphics/Component/Component.cpp | 3 ++- RetroFE/Source/Version.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RetroFE/Source/Graphics/Component/Component.cpp b/RetroFE/Source/Graphics/Component/Component.cpp index 22cf78d..e36a52c 100644 --- a/RetroFE/Source/Graphics/Component/Component.cpp +++ b/RetroFE/Source/Graphics/Component/Component.cpp @@ -185,7 +185,8 @@ void Component::update(float dt) } animationRequested_ = false; } - else if (tweens_ && currentTweenComplete_) + + if (tweens_ && currentTweenComplete_) { animationType_ = "idle"; currentTweens_ = tweens_->getAnimation( "idle", menuIndex_ ); diff --git a/RetroFE/Source/Version.cpp b/RetroFE/Source/Version.cpp index 31d1040..731ec55 100644 --- a/RetroFE/Source/Version.cpp +++ b/RetroFE/Source/Version.cpp @@ -21,7 +21,7 @@ std::string retrofe_version_major = "0"; std::string retrofe_version_minor = "9"; -std::string retrofe_version_build = "25"; +std::string retrofe_version_build = "26"; std::string Version::getString( )