mirror of
https://github.com/dragoonDorise/EmuDeck.git
synced 2025-06-25 00:03:36 -04:00
16 lines
No EOL
349 B
Bash
16 lines
No EOL
349 B
Bash
#!/bin/bash
|
|
. "$HOME/.config/EmuDeck/backend/functions/all.sh"
|
|
emulatorInit "cemu"
|
|
# shellcheck disable=SC1091
|
|
. "$emudeckFolder/settings.sh"
|
|
|
|
# shellcheck disable=SC2154
|
|
LAUNCH="${toolsPath}/emu-launch.sh"
|
|
|
|
# Set emulator name
|
|
EMU="Cemu"
|
|
|
|
# Launch emu-launch.sh
|
|
"${LAUNCH}" -e "${EMU}" -- "${@}"
|
|
cloud_sync_uploadForced
|
|
rm -rf "$savesPath/.gaming"; |