Skip to content

Commit 6601234

Browse files
authored
Merge pull request #3938 from BlitterStudio/add-amiberry-x86
Add Amiberry for x86 platforms as well (fixes #3937)
2 parents 7407274 + f91b9ed commit 6601234

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scriptmodules/emulators/amiberry.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rp_module_help="ROM Extension: .adf .chd .ipf .lha .zip\n\nCopy your Amiga games
1515
rp_module_licence="GPL3 https://raw.githubusercontent.com/BlitterStudio/amiberry/master/LICENSE"
1616
rp_module_repo="git https://github.com/BlitterStudio/amiberry :_get_branch_amiberry"
1717
rp_module_section="opt"
18-
rp_module_flags="!all arm rpi3 rpi4 rpi5"
18+
rp_module_flags="!all arm rpi3 rpi4 rpi5 x86"
1919

2020
function _update_hook_amiberry() {
2121
local rom
@@ -31,6 +31,8 @@ function _update_hook_amiberry() {
3131
function _get_branch_amiberry() {
3232
if isPlatform "dispmanx"; then
3333
echo "v5.7.1"
34+
elif isPlatform "x86"; then
35+
echo "v6.3.3"
3436
else
3537
echo "v5.7.2"
3638
fi
@@ -50,6 +52,8 @@ function _get_platform_amiberry() {
5052
platform="tinker"
5153
elif isPlatform "vero4k"; then
5254
platform="vero4k"
55+
elif isPlatform "x86"; then
56+
platform="x86-64"
5357
fi
5458
echo "$platform"
5559
}

0 commit comments

Comments
 (0)