aboutsummaryrefslogtreecommitdiffstats
path: root/emulators/linux-ePSXe/files/linux-epsxe
blob: 6c5feb96d3511707ca70b377b4afea6e78d5ad2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# linux-epsxe - linux-ePSXe wrapper
#
# (c) 2002 Jean-Yves Lefort.
# All rights reserved.

USERDIR=$HOME/.linux-ePSXe

if [ ! -x $USERDIR/epsxe ]; then
    echo "$USERDIR/epsxe not found or not executable."
    echo "You should run linux-epsxe_install."
    exit 1
fi

cd $USERDIR && exec ./epsxe "$@"