summarylogtreecommitdiffstats
path: root/smsadvance
blob: b673241549dc3825582abe41884f1593ed7e059e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

# WINE Launcher script for SMSAdvance

export WINEPREFIX=~/.gba-emu
export SMSDIR=/usr/share/smsadvance # installation dir for AUR package

cat << EOF
SMSAdvance Linux Loader by Atapi/Sterophonick
Original Program: (c) 2009 FluBBa

EOF

cd $SMSDIR
wine SMSAdvance.exe

if [ $? -eq 53 ]
then
    winetricks -q mfc42
    wine $SMSDIR/SMSAdvance.exe
fi