Skip to content

Commit

Permalink
move lr-fba-next.sh out of experimental (binaries are now available),…
Browse files Browse the repository at this point in the history
… and make it the default for rpi2 - #986
  • Loading branch information
joolswills committed Sep 18, 2015
1 parent 1c0168a commit 4830937
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 4 additions & 2 deletions scriptmodules/emulators/pifba.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ function configure_pifba() {
chown $user:$user "$configdir/fba/$config"
done

addSystem 1 "$md_id" "neogeo" "$md_inst/fba2x %ROM%"
addSystem 1 "$md_id" "fba arcade" "$md_inst/fba2x %ROM%"
local def=0
isPlatform "rpi1" && def=1
addSystem $def "$md_id" "neogeo" "$md_inst/fba2x %ROM%"
addSystem $def "$md_id" "fba arcade" "$md_inst/fba2x %ROM%"
}
8 changes: 5 additions & 3 deletions scriptmodules/libretrocores/lr-fba-next.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

rp_module_id="lr-fba-next"
rp_module_desc="Arcade emu - Final Burn Alpha (0.2.97.36) port for libretro"
rp_module_menus="4+"
rp_module_menus="2+"

function depends_lr-fba-next() {
[[ "$__default_gcc_version" == "4.7" ]] && getDepends gcc-4.8 g++-4.8
Expand Down Expand Up @@ -44,6 +44,8 @@ function configure_lr-fba-next() {
mkRomDir "fba"
ensureSystemretroconfig "fba"

addSystem 1 "$md_id" "neogeo" "$md_inst/fba_libretro.so"
addSystem 1 "$md_id" "fba arcade" "$md_inst/fba_libretro.so"
local def=1
isPlatform "rpi1" && def=0
addSystem $def "$md_id" "neogeo" "$md_inst/fba_libretro.so"
addSystem $def "$md_id" "fba arcade" "$md_inst/fba_libretro.so"
}

0 comments on commit 4830937

Please sign in to comment.