We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c46cb3 commit 730b682Copy full SHA for 730b682
1 file changed
scriptmodules/libretrocores/lr-ep128emu.sh
@@ -33,15 +33,11 @@ function install_lr-ep128emu() {
33
}
34
35
function configure_lr-ep128emu() {
36
- mkRomDir "enterprise"
37
- ensureSystemretroconfig "enterprise"
38
-
39
- addEmulator 1 "$md_id" "enterprise" "$md_inst/ep128emu_core_libretro.so"
40
- addSystem "enterprise"
41
42
- mkRomDir "tvc"
43
- ensureSystemretroconfig "tvc"
44
45
- addEmulator 1 "$md_id" "tvc" "$md_inst/ep128emu_core_libretro.so"
46
- addSystem "tvc"
+ local system
+ for system in "enterprise" "tvc"; do
+ addSystem "$system"
+ mkRomDir "$system"
+ ensureSystemretroconfig "$system"
+ addEmulator 1 "$md_id" "$system" "$md_inst/ep128emu_core_libretro.so"
+ done
47
0 commit comments