diff --git a/linux-game-manager.sh b/linux-game-manager.sh index 60f1d0c..e747b04 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -522,15 +522,14 @@ game_launcher() { if [[ $menuCode -eq 1 ]]; then exit 0 fi - pushd "${selectedGame%/*}" if file "${selectedGame##*/}" | grep -q "ELF.*x86-64"; then if [[ "$(uname -m)" != "x86_64" ]]; then exec FEXLoader -- "${selectedGame#./}" else - . "./${selectedGame##*/}" + . "${selectedGame}" fi else - . "./${selectedGame##*/}" + . "${selectedGame}" fi exit 0 }