Skip to content

Commit 36f797e

Browse files
committed
lr-vice: preset a couple of SID options on ARMv6
The options changed are similar to the configuration used for the standalone VICE: * Set the SID implementation to FastSID for `arm` devices * Decrease the sound sample rate to 22050 for RPI0/1
1 parent 3d841d1 commit 36f797e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scriptmodules/libretrocores/lr-vice.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ function configure_lr-vice() {
6666

6767
[[ "$md_mode" == "remove" ]] && return
6868

69+
if isPlatform "arm"; then
70+
setRetroArchCoreOption "vice_sid_engine" "FastSID"
71+
isPlatform "armv6" && setRetroArchCoreOption "vice_sound_sample_rate" "22050"
72+
fi
73+
6974
cp -R "$md_inst/data" "$biosdir"
7075
chown -R $user:$user "$biosdir/data"
7176
}

0 commit comments

Comments
 (0)