#!/bin/sh

mamehome=$HOME/.mame

mkdir -p $mamehome
if [ $? -eq 0 ]; then
	cd $mamehome
	/usr/share/mame/mame "$@"
fi
