Skip to content

Commit f28351d

Browse files
authored
Merge pull request #3521 from s1eve-mcdichae1/redream-x86
redream.sh: add for x86_64 builds.
2 parents 0e031c7 + d877a81 commit f28351d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scriptmodules/emulators/redream.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@ rp_module_desc="Redream Dreamcast emulator"
1414
rp_module_help="ROM Extensions: .cdi .cue .chd .gdi .iso\n\nCopy your Dreamcast roms to $romdir/dreamcast"
1515
rp_module_licence="PROP"
1616
rp_module_section="exp"
17-
rp_module_flags="noinstclean !all gles31 aarch64"
17+
rp_module_flags="noinstclean !all gles31 aarch64 x86_64"
1818

1919
function __binary_url_redream() {
20-
echo "https://redream.io/download/redream.universal-raspberry-linux-latest.tar.gz"
20+
local platf="universal-raspberry"
21+
isPlatform "x86_64" && platf="x86_64"
22+
local url="https://redream.io/download/redream.${platf}-linux-latest.tar.gz"
23+
24+
echo "$url"
2125
}
2226

2327
function install_bin_redream() {

0 commit comments

Comments
 (0)