Fixes always using melonDS core even if DeSmuME core is selected

This commit is contained in:
Riley Testut 2020-04-27 13:01:09 -07:00
parent 610697be5d
commit f0d245ef8d

View File

@ -86,7 +86,7 @@ extension System
case .n64: return N64.core
case .gbc: return GBC.core
case .gba: return GBA.core
case .ds: return MelonDS.core
case .ds: return Settings.preferredCore(for: .ds) ?? MelonDS.core
}
}