Fixed highlight sound effect when using multiple menus.

This commit is contained in:
Pieter Hulshoff 2017-06-07 16:37:59 +02:00
parent 119f899753
commit 126f88b4ce
3 changed files with 6 additions and 3 deletions

View File

@ -159,7 +159,7 @@ bool MetadataDatabase::importDirectory()
if(dp == NULL)
{
Logger::write(Logger::ZONE_ERROR, "CollectionInfoBuilder", "Could not read directory \"" + mameListPath + "\"");
Logger::write(Logger::ZONE_INFO, "CollectionInfoBuilder", "Could not read directory \"" + mameListPath + "\"");
}
else
{

View File

@ -1149,8 +1149,11 @@ void Page::scroll(bool forward)
if(menu)
{
menu->scroll(forward);
highlightSoundChunk_->play();
}
}
if(highlightSoundChunk_)
{
highlightSoundChunk_->play();
}
return;
}

View File

@ -20,7 +20,7 @@
std::string retrofe_version_major = "0";
std::string retrofe_version_minor = "8";
std::string retrofe_version_build = "6";
std::string retrofe_version_build = "7";
std::string Version::getString()