Remove bogus libretro core installation

I don't know if we are supposed to be able to install individual cores, but we have no code to do it, so remove the call that tries to call that missing code.
This commit is contained in:
Daniel Johnson 2023-12-17 14:24:09 -05:00
parent d813b3390e
commit 7627fa47c1

View file

@ -287,10 +287,6 @@ class libretro(Runner):
}
command.append("--libretro={}".format(self.get_core_path(core)))
# Ensure the core is available
if not self.is_installed(core=core):
self.install(core)
# Main file
file = self.game_config.get("main_file")
if not file: