Removed superfluous art loading in collection up/down.

This commit is contained in:
Pieter Hulshoff 2019-12-03 21:38:57 +01:00
parent a293717351
commit 218583c039
2 changed files with 2 additions and 4 deletions

View File

@ -360,7 +360,7 @@ void RetroFE::run( )
if ( !currentPage_ )
{
Logger::write( Logger::ZONE_WARNING, "RetroFE", "Could not load page" );
Logger::write( Logger::ZONE_WARNING, "RetroFE", "Could not load page" );
running = false;
break;
}
@ -736,7 +736,6 @@ void RetroFE::run( )
}
currentPage_->onNewItemSelected( );
currentPage_->reallocateMenuSpritePoints( );
state = RETROFE_COLLECTION_UP_MENU_ENTER;
}
break;
@ -906,7 +905,6 @@ void RetroFE::run( )
}
currentPage_->onNewItemSelected( );
currentPage_->reallocateMenuSpritePoints( );
state = RETROFE_COLLECTION_DOWN_MENU_ENTER;
}
break;

View File

@ -21,7 +21,7 @@
std::string retrofe_version_major = "0";
std::string retrofe_version_minor = "9";
std::string retrofe_version_build = "16";
std::string retrofe_version_build = "17";
std::string Version::getString( )