Welcome to mirror list, hosted at ThFree Co, Russian Federation.

clover-kachikachi-wr « bin « rootfs « hakchi « mod_hakchi « mods - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8ff9899273dff8393e5a1f1489a36140df4e506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Wrapper for kachikachi
# You can add extra command line arguments to all games at once
# using "cfg_nes_extra_args" variable in p0000_config
# or disable epilepsy protection using "cfg_disable_armet=y"

source /etc/preinit
script_init

args="$@ $cfg_nes_extra_args"
[ "$cfg_disable_armet" == "y" ] && args="$(echo $args | sed 's/--enable-armet//g')"
exec /usr/bin/clover-kachikachi $args