A navigation sound is now played when attempting to add a placeholder as favorite.

This commit is contained in:
Leon Styhre 2021-06-21 22:16:43 +02:00
parent 58dfe00153
commit 64e14be4ee

View file

@ -476,6 +476,9 @@ bool ISimpleGameListView::input(InputConfig* config, Input input)
return true;
}
}
else if (config->isMappedTo("y", input) && getCursor()->isPlaceHolder()) {
NavigationSounds::getInstance()->playThemeNavigationSound(SCROLLSOUND);
}
}
}