Skip to content

Commit fb461f2

Browse files
committed
lr-desmume - fix building on arm
platform var needs the additional 'unix' keyword since the changes in libretro/desmume@3af49d8 or else the wrong target platform is used (it tries to include x86 specific code)
1 parent 2431ec8 commit fb461f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scriptmodules/libretrocores/lr-desmume.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rp_module_section="exp"
1818

1919
function _params_lr-desmume() {
2020
local params=()
21-
isPlatform "arm" && params+=("platform=armvhardfloat")
21+
isPlatform "arm" && params+=("platform=unixarmvhardfloat")
2222
isPlatform "aarch64" && params+=("DESMUME_JIT=0")
2323
echo "${params[@]}"
2424
}

0 commit comments

Comments
 (0)