mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-04-08 04:08:21 +02:00
Fixed highlight sound effect when using multiple menus.
This commit is contained in:
@@ -159,7 +159,7 @@ bool MetadataDatabase::importDirectory()
|
|||||||
|
|
||||||
if(dp == NULL)
|
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
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1149,8 +1149,11 @@ void Page::scroll(bool forward)
|
|||||||
if(menu)
|
if(menu)
|
||||||
{
|
{
|
||||||
menu->scroll(forward);
|
menu->scroll(forward);
|
||||||
highlightSoundChunk_->play();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(highlightSoundChunk_)
|
||||||
|
{
|
||||||
|
highlightSoundChunk_->play();
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
std::string retrofe_version_major = "0";
|
std::string retrofe_version_major = "0";
|
||||||
std::string retrofe_version_minor = "8";
|
std::string retrofe_version_minor = "8";
|
||||||
std::string retrofe_version_build = "6";
|
std::string retrofe_version_build = "7";
|
||||||
|
|
||||||
|
|
||||||
std::string Version::getString()
|
std::string Version::getString()
|
||||||
|
|||||||
Reference in New Issue
Block a user