#!/bin/sh
# linux-mupen64 - linux-Mupen64 wrapper
#
# 2003 Travis Poppe

USERDIR=$HOME/.linux-mupen64

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

cd $USERDIR && exec ./mupen64
