2022-08-05 14:08:26 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Copyright (C) 2022-present BrooksyTech (https://github.com/brooksytech)
|
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
|
|
|
if [ ! -d "/storage/.config/dolphin-emu" ]; then
|
|
|
|
mkdir -p "/storage/.config/dolphin-emu"
|
|
|
|
cp -r "/usr/config/dolphin-emu" "/storage/.config/"
|
|
|
|
fi
|
|
|
|
|
2022-08-12 12:44:03 +00:00
|
|
|
if [ ! -d "/storage/.config/dolphin-emu/StateSaves" ]; then
|
|
|
|
mkdir -p "/storage/.config/dolphin-emu/StateSaves"
|
|
|
|
fi
|
|
|
|
|
2022-08-05 14:08:26 +00:00
|
|
|
rm -rf /storage/.local/share/dolphin-emu
|
|
|
|
|
|
|
|
ln -sfv /storage/.config/dolphin-emu /storage/.local/share/dolphin-emu
|
|
|
|
|
2022-09-03 00:40:41 +00:00
|
|
|
/usr/bin/dolphin-emu-nogui -p @DOLPHIN_PLATFORM@ -a HLE -e "${1}"
|