Skip to content

Commit 8b2980d

Browse files
authored
Merge pull request #3877 from cmitu/sdl12-compat-backend
lr-mame/mess: bump memory requirements
2 parents f9b7ed6 + e320cf9 commit 8b2980d

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

scriptmodules/libretrocores/lr-mame.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ function sources_lr-mame() {
3939
}
4040

4141
function build_lr-mame() {
42-
rpSwap on 4096
42+
if isPlatform "64bit"; then
43+
rpSwap on 10240
44+
else
45+
rpSwap on 6144
46+
fi
4347
local params=($(_get_params_lr-mame) SUBTARGET=arcade)
4448
make clean
4549
make "${params[@]}"

scriptmodules/libretrocores/lr-mess.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ function sources_lr-mess() {
2626
}
2727

2828
function build_lr-mess() {
29-
rpSwap on 4096
29+
if isPlatform "64bit"; then
30+
rpSwap on 10240
31+
else
32+
rpSwap on 6144
33+
fi
3034
local params=($(_get_params_lr-mame) SUBTARGET=mess)
3135
make clean
3236
make "${params[@]}"

0 commit comments

Comments
 (0)