Skip to content

Commit

Permalink
added lr-fbalpha2018 module
Browse files Browse the repository at this point in the history
upstream fbalpha moved to github, so libretro deprecated the old fbalpha repository and renamed it to fbalpha2018.
lr-fbalpha is now a fork of the upstream development and will be more up to date, but will require more frequent
romset changes - see https://retropie.org.uk/forum/topic/19741/new-fb-alpha-libretro-pre-v0-2-97-44
  • Loading branch information
joolswills committed Oct 26, 2018
1 parent f180a28 commit 0779c71
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions scriptmodules/libretrocores/lr-fbalpha.sh
Expand Up @@ -66,6 +66,7 @@ function configure_lr-fbalpha() {

local def=1
isPlatform "armv6" && def=0

addEmulator 0 "$md_id" "arcade" "$md_inst/fbalpha_libretro.so"
addEmulator 0 "$md_id-neocd" "arcade" "$md_inst/fbalpha_libretro.so --subsystem neocd"
addEmulator $def "$md_id" "neogeo" "$md_inst/fbalpha_libretro.so"
Expand Down
32 changes: 32 additions & 0 deletions scriptmodules/libretrocores/lr-fbalpha2018.sh
@@ -0,0 +1,32 @@
#!/usr/bin/env bash

# This file is part of The RetroPie Project
#
# The RetroPie Project is the legal property of its developers, whose names are
# too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source.
#
# See the LICENSE.md file at the top-level directory of this distribution and
# at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md
#

rp_module_id="lr-fbalpha2018"
rp_module_desc="Arcade emu - Final Burn Alpha (v0.2.97.43) port for libretro"
rp_module_help="ROM Extension: .zip\n\nCopy your FBA roms to\n$romdir/fba or\n$romdir/neogeo or\n$romdir/arcade\n\nFor NeoGeo games the neogeo.zip BIOS is required and must be placed in the same directory as your FBA roms."
rp_module_licence="NONCOM https://raw.githubusercontent.com/libretro/fbalpha2018/master/src/license.txt"
rp_module_section="main"

function sources_lr-fbalpha2018() {
gitPullOrClone "$md_build" https://github.com/libretro/fbalpha2018.git
}

function build_lr-fbalpha2018() {
build_lr-fbalpha
}

function install_lr-fbalpha2018() {
install_lr-fbalpha
}

function configure_lr-fbalpha2018() {
configure_lr-fbalpha
}

0 comments on commit 0779c71

Please sign in to comment.