mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Fixed an issue with removing invalid alternative emulator entries using the metadata editor.
This commit is contained in:
parent
cb44762537
commit
07425d41fa
|
@ -248,6 +248,11 @@ GuiMetaDataEd::GuiMetaDataEd(Window* window,
|
|||
"", ViewController::CROSSEDCIRCLE_CHAR + " CLEAR ENTRY"));
|
||||
|
||||
for (auto entry : launchCommands) {
|
||||
if (mInvalidEmulatorEntry && singleEntry &&
|
||||
entry.second !=
|
||||
ViewController::EXCLAMATION_CHAR + " " + originalValue)
|
||||
continue;
|
||||
|
||||
std::string selectedLabel = ed->getValue();
|
||||
std::string label;
|
||||
ComponentListRow row;
|
||||
|
|
Loading…
Reference in a new issue