mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-01-06 22:18:57 +01:00
Fixed highlight sound effect when using multiple menus.
This commit is contained in:
parent
119f899753
commit
126f88b4ce
@ -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
|
||||
{
|
||||
|
||||
@ -1149,8 +1149,11 @@ void Page::scroll(bool forward)
|
||||
if(menu)
|
||||
{
|
||||
menu->scroll(forward);
|
||||
highlightSoundChunk_->play();
|
||||
}
|
||||
}
|
||||
if(highlightSoundChunk_)
|
||||
{
|
||||
highlightSoundChunk_->play();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
@ -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()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user